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