diff options
author | 2024-06-18 18:01:27 +0100 | |
---|---|---|
committer | 2024-06-18 20:06:55 +0100 | |
commit | 09a39d699b7c1080fef64a616cdd9e5eb5cd8a6c (patch) | |
tree | ee8535cfdf0e5463f36c1e3b1551ff1a1cceba0a | |
parent | Explicitly set the files to be pulled in by docker (diff) |
Don't install dev dependencies in the docker image
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"] |