mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
1507625e57
This fixes Demo https://martin.maplibre.org/ site (the new code is already in production there). Main fixes: * uses HTTPS again, just like the previous site * uses nginx * fixes all the relative paths, maplibre, minor other things
13 lines
166 B
Docker
13 lines
166 B
Docker
FROM node:alpine as builder
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json .
|
|
COPY yarn.lock .
|
|
RUN yarn install
|
|
|
|
COPY . .
|
|
RUN yarn run build
|
|
|
|
CMD ["yarn", "run", "preview"]
|