mirror of
https://github.com/Starlio-app/Website.git
synced 2025-04-07 03:25:26 +01:00
13 lines
No EOL
177 B
Docker
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"] |