Starlio-web/Dockerfile
Redume 8b7f4b087d
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
chore: use alpine version for python
2025-02-20 22:04:25 +03:00

13 lines
No EOL
177 B
Docker

FROM python:3.12-alpine
WORKDIR /
COPY ./requirements.txt ./
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
COPY . .
EXPOSE 8000
CMD ["python", "main.py"]