2024-09-27 20:30:42 +03:00
|
|
|
FROM python:3.12
|
|
|
|
|
|
|
|
WORKDIR /starlio-web
|
|
|
|
|
|
|
|
COPY ./requirements.txt /starlio-web/requirements.txt
|
|
|
|
|
|
|
|
RUN pip3 install --no-cache-dir --upgrade -r /starlio-web/requirements.txt
|
|
|
|
|
|
|
|
COPY ./ /starlio-web/
|
|
|
|
|
2024-09-28 11:48:18 +03:00
|
|
|
CMD ["python", "main.py"]
|