paris-brest-paris-prometheu.../Dockerfile

11 lines
150 B
Docker

FROM python:3.10-alpine
COPY ./ /app
WORKDIR /app
RUN pip3 install poetry \
&& poetry install --only main
CMD poetry run python3 app/main.py