Add Dockerfile

This commit is contained in:
Florian Brinker 2019-10-19 18:00:57 +02:00
commit b1b6f4dc8b
2 changed files with 16 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
FROM python:alpine
MAINTAINER Florian Brinker "mail+docker@f-brinker.de"
# Install Git
RUN apk update && \
apk add --no-cache bash git
# Clone Tileboard
RUN git clone https://github.com/resoai/TileBoard.git /tileboard
# Start Server
WORKDIR /tileboard
EXPOSE 8000
ENTRYPOINT python3 -m http.server

1
README.md Normal file
View File

@ -0,0 +1 @@
# TileBoard Docker-Container