mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
6d17c1e2b6
`npm install` is having some weird issues, while `yarn` seem to work well. Also, bumped almost all dependencies.
11 lines
137 B
Docker
11 lines
137 B
Docker
FROM node:20-alpine as builder
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY package.json .
|
|
COPY yarn.lock .
|
|
RUN yarn install
|
|
|
|
COPY . .
|
|
CMD yarn run build
|