aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 59ba565..53ecdc9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,8 +5,8 @@ ENV PYTHONHASHSEED=random
# Install Dependencies
WORKDIR /metricity
COPY poetry.lock pyproject.toml ./
-RUN poetry install
+RUN poetry install --without dev
-COPY . /metricity
+COPY . .
CMD ["bash", "entry_point.sh"]