CyberChef/Dockerfile

10 lines
164 B
Docker
Raw Permalink Normal View History

2024-02-06 04:26:33 -06:00
FROM node:18-alpine AS build
COPY . .
RUN npm ci
RUN npm run build
2024-02-11 07:29:18 -06:00
FROM nginx:1.25-alpine3.18 AS cyberchef
2024-02-11 07:29:18 -06:00
COPY --from=build ./build/prod /usr/share/nginx/html/