mirror of
https://github.com/gchq/CyberChef
synced 2025-12-05 23:53:27 +00:00
10 lines
170 B
Docker
10 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
|