ceios/database/Dockerfile
Jim Andrew Morris e255529523 Uploading the Disarm-AttackFlow Builder
Modified version of the AttackFlow Builder from MITRE. Includes DISARM framework components with full integration of QOL and STIX objects.
2024-09-13 15:20:35 +09:30

10 строки
225 B
Docker

FROM node:16 AS builder
COPY src/attack_flow_builder /attack_flow_builder
WORKDIR /attack_flow_builder
RUN npm ci
RUN npm run build
FROM nginx:1.21-alpine
COPY --from=builder /attack_flow_builder/dist /usr/share/nginx/html