sessionservice/Dockerfile
2023-02-28 12:30:51 +00:00

14 lines
204 B
Docker

FROM python:3.11
WORKDIR /code/
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
COPY app app
RUN python3 -m app.main
CMD ["python3", "-m", "app"]