mirror of
https://github.com/maplibre/martin.git
synced 2024-12-19 12:51:37 +03:00
a8f7c30eef
This uses the webserver built into vitejs instead of configuring an entirely new nginx server with an additional docker image.
6 lines
89 B
Docker
6 lines
89 B
Docker
FROM node:18-alpine as builder
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
RUN npm i
|
|
RUN npm run build |