mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 08:07:44 +01:00
15 lines
179 B
Docker
15 lines
179 B
Docker
FROM node:10
|
|
|
|
EXPOSE 8888
|
|
|
|
ENV HOME /maputnik
|
|
RUN mkdir ${HOME}
|
|
|
|
COPY . ${HOME}/
|
|
|
|
WORKDIR ${HOME}
|
|
|
|
RUN npm install -d --dev
|
|
RUN npm run build
|
|
|
|
CMD npm run start -- --host 0.0.0.0
|