CyberChef/Dockerfile
2024-09-26 09:00:41 -04:00

9 lines
No EOL
163 B
Docker

FROM node:18-alpine AS build
COPY . .
RUN npm ci
RUN npm run build
FROM nginx:1.25-alpine3.18 AS cyberchef
COPY --from=build ./build/prod /usr/share/nginx/html/