mirror of
https://github.com/AliFlux/MapTilesDownloader.git
synced 2025-05-15 14:40:11 -07:00
12 lines
173 B
Docker
12 lines
173 B
Docker
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" ] |