Сделал аналитику, пофиксил роуты, сделал SSL

This commit is contained in:
Данил 2024-10-18 19:58:32 +03:00
parent 05fb43c53a
commit a101eb7c1f
3 changed files with 39 additions and 9 deletions

View file

@ -1,11 +1,13 @@
FROM python:3.12
WORKDIR /starlio-web
WORKDIR /
COPY ./requirements.txt /starlio-web/requirements.txt
COPY ./requirements.txt ./
RUN pip3 install --no-cache-dir --upgrade -r /starlio-web/requirements.txt
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
COPY ./ /starlio-web/
COPY . .
EXPOSE 8000
CMD ["python", "main.py"]