CyberChef/Dockerfile

10 lines
164 B
Docker
Raw Permalink 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
2024-02-11 13:29:18 +00:00
FROM nginx:1.25-alpine3.18 AS cyberchef
2024-02-11 13:29:18 +00:00
COPY --from=build ./build/prod /usr/share/nginx/html/