Mbtiles, python 3.0+, and docker support
This commit is contained in:
+12
@@ -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" ]
|
||||
Reference in New Issue
Block a user