fix: Dockerfile

This commit is contained in:
Florian Bezannier
2022-04-05 08:26:30 +02:00
parent 41e98e6956
commit c17425c3ad
-1
View File
@@ -10,7 +10,6 @@ RUN pip3 install poetry
COPY poetry.lock pyproject.toml ./
RUN poetry export -f requirements.txt --output /tmp/requirements.txt
RUN pip3 install --no-deps --no-cache-dir --ignore-installed -r /tmp/requirements.txt
RUN poetry install
EXPOSE 5000
FROM debian:bullseye-slim