Kekkai-web/Dockerfile

13 lines
170 B
Text
Raw Normal View History

2024-10-19 19:14:10 +03:00
FROM python:3.12
WORKDIR /
COPY ./requirements.txt ./
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
COPY . .
EXPOSE 9000
CMD ["python", "main.py"]