mirror of
https://github.com/Starlio-app/Starlio-web.git
synced 2024-11-05 17:03:58 +03:00
13 lines
No EOL
170 B
Docker
13 lines
No EOL
170 B
Docker
FROM python:3.12
|
|
|
|
WORKDIR /
|
|
|
|
COPY ./requirements.txt ./
|
|
|
|
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["python", "main.py"] |