securityos/Dockerfile

12 lines
129 B
Docker
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
FROM node:16-alpine
RUN apk add --no-cache git
WORKDIR SecurityOS
COPY . .
RUN yarn
RUN yarn build
CMD yarn start