mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 11:07:45 +01:00
16 lines
195 B
Docker
16 lines
195 B
Docker
|
FROM nodesource/xenial:6.1.0
|
||
|
|
||
|
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
|