CyberChef/Containerfile

10 lines
170 B
Plaintext
Raw Normal View History

2024-02-06 11:26:33 +01:00
FROM node:18-alpine AS build
COPY . .
RUN npm ci
RUN npm run build
FROM ghcr.io/static-web-server/static-web-server:2.25-alpine
2024-02-06 11:26:33 +01:00
COPY --from=build ./build/prod /public