Fix Dockerfile (#1509)

This commit is contained in:
Suchintan
2025-01-07 08:18:12 -05:00
committed by GitHub
parent 9674e838a3
commit 94795fb472

View File

@@ -2,6 +2,7 @@ FROM python:3.11 as requirements-stage
WORKDIR /tmp
RUN pip install poetry
RUN poetry self add poetry-plugin-export
COPY ./pyproject.toml /tmp/pyproject.toml
COPY ./poetry.lock /tmp/poetry.lock
RUN poetry export -f requirements.txt --output requirements.txt --without-hashes