forked from fbrinker/docker-tileboard-OUTDATED
Add Dockerfile
This commit is contained in:
commit
b1b6f4dc8b
15
Dockerfile
Normal file
15
Dockerfile
Normal 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
|
Reference in New Issue
Block a user