14 lines
204 B
Docker
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"]
|