Mbtiles, python 3.0+, and docker support

This commit is contained in:
Ali Ashraf
2020-04-27 00:28:49 +05:00
parent 69f48a75ca
commit 4e79189c70
89 changed files with 909 additions and 233 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.8
WORKDIR /app
COPY src/requirements.txt ./
RUN pip install -r requirements.txt
# Bundle app source
COPY src /app
EXPOSE 8080
CMD [ "python", "server.py" ]