mirror of
https://github.com/gchq/CyberChef
synced 2024-12-29 14:03:10 +00: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
|