fixed: cors error (finnaly) && minor bugs, add: custom wrapper for VATSIM fetcher && code moved to src folder && docker

This commit is contained in:
te5154c
2024-02-05 22:33:23 +03:00
parent e513a84999
commit 0d481c4d6c
15 changed files with 113 additions and 52 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"]