martin/demo/frontend/Dockerfile
Birk Skyum a8f7c30eef
Simplify demo - remove nginx (#692)
This uses the webserver built into vitejs instead of configuring an
entirely new nginx server with an additional docker image.
2023-05-31 00:56:11 +02:00

6 lines
89 B
Docker

FROM node:18-alpine as builder
WORKDIR /usr/src/app
COPY . .
RUN npm i
RUN npm run build