snort/Dockerfile
2023-02-09 19:02:20 +00:00

9 lines
170 B
Docker

FROM node:16 as build
WORKDIR /app
COPY package*.json yarn.lock .
RUN yarn install
COPY . .
RUN yarn build
FROM nginx
COPY --from=build /app/build /usr/share/nginx/html