initial working commit

This commit is contained in:
2023-01-14 13:33:37 -05:00
parent 7be7b1debb
commit 7802dc20c2
6 changed files with 7015 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM python:3.9-alpine
WORKDIR /app
LABEL com.skoobasteeve.mtapi-docker.version="main"
ADD tmp/MTAPI .
COPY data/stations.json data/
COPY data/stations.csv data/
RUN pip install -r requirements.txt
CMD [ "python", "app.py" ]
EXPOSE 5000