Created
September 2, 2019 19:31
-
-
Save hmeine/eb301b87e06888b03d8cbf9bee45e5b7 to your computer and use it in GitHub Desktop.
Dockerfile for tilemill
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:8.11 | |
COPY tilemill /usr/src/tilemill | |
RUN cd /usr/src/tilemill && npm install | |
ENTRYPOINT cd /usr/src/tilemill && npm start | |
EXPOSE 20008 | |
EXPOSE 20009 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment