Starlio-web/Dockerfile

13 lines
170 B
Text
Raw Permalink Normal View History

2024-09-27 20:30:42 +03:00
FROM python:3.12
WORKDIR /
2024-09-27 20:30:42 +03:00
COPY ./requirements.txt ./
2024-09-27 20:30:42 +03:00
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
2024-09-27 20:30:42 +03:00
COPY . .
EXPOSE 8000
2024-09-27 20:30:42 +03:00
CMD ["python", "main.py"]