2
0
mirror of https://github.com/gchq/CyberChef synced 2026-03-01 11:01:10 +00:00
Files
CyberChef/Dockerfile
2024-02-12 10:46:28 +00:00

10 lines
164 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/