mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2024-11-10 10:07:45 +01:00
2812c72d96
- Updated README with docker instructions
15 lines
195 B
Docker
15 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
|