lottis_imagen/gen_service/Dockerfile
2024-05-01 16:50:42 +02:00

10 lines
166 B
Docker

FROM python:3.12
RUN pip install poetry
WORKDIR /app
COPY . /app
RUN poetry install
ENTRYPOINT ["poetry", "run", "gunicorn", "wsgi:app", "--bind", "0.0.0.0:5000"]