blob: e5e4755ea158621460b2ca7fbaebfebade498ee9 (
plain)
1
2
3
4
5
6
7
8
|
FROM node:latest AS build
RUN npm install -g pnpm
COPY sites/www /sites/www
WORKDIR /sites/www
RUN pnpm install --frozen-lockfile && pnpm run build
FROM nginx:latest
COPY --from=build /sites/www/dist /srv/www
|