mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-01 13:41:01 +01:00
10 lines
164 B
Docker
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/
|