mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-25 09:16:17 -04:00
9 lines
188 B
Docker
9 lines
188 B
Docker
FROM node:18-alpine AS build
|
|
|
|
COPY . .
|
|
RUN npm ci
|
|
RUN npm run build
|
|
|
|
FROM nginxinc/nginx-unprivileged:1.25.1-alpine3.18 AS cyberchef
|
|
|
|
COPY --from=build ./build/prod /usr/share/nginx/html/
|