mirror of
https://github.com/Starlio-app/Starlio-web.git
synced 2025-02-25 19:51:25 +03:00
Сделал аналитику, пофиксил роуты, сделал SSL
This commit is contained in:
parent
05fb43c53a
commit
a101eb7c1f
3 changed files with 39 additions and 9 deletions
10
Dockerfile
10
Dockerfile
|
@ -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"]
|
Loading…
Add table
Reference in a new issue