mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 07:46:16 -04:00
9 lines
170 B
Docker
9 lines
170 B
Docker
FROM node:18-alpine AS build
|
|
|
|
COPY . .
|
|
RUN npm ci
|
|
RUN npm run build
|
|
|
|
FROM ghcr.io/static-web-server/static-web-server:2.25-alpine
|
|
|
|
COPY --from=build ./build/prod /public
|