This repository has been archived on 2021-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
fbrinker-tileboard/Dockerfile

16 lines
307 B
Docker
Raw Normal View History

2019-10-19 16:00:57 +00:00
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