CyberChef/Containerfile

10 lines
170 B
Text
Raw Normal View History

2024-02-06 10:26:33 +00: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 10:26:33 +00:00
COPY --from=build ./build/prod /public