add: docker, fix: url to github in index.html & reqs.txt

This commit is contained in:
te5154c
2024-02-05 17:49:46 +03:00
parent f5752606af
commit f5cac5e410
7 changed files with 27 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.7.10
WORKDIR /build/
COPY requirements.txt /build/
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
COPY . /build/
# CMD ["python3", "-m", "flask", "run", "--host=0.0.0.0"]