snort/Dockerfile

10 lines
248 B
Docker
Raw Normal View History

2023-02-11 20:05:46 +00:00
FROM node:16 as build
2023-02-09 19:02:20 +00:00
WORKDIR /app
COPY . .
2023-02-11 20:05:46 +00:00
RUN yarn install --network-timeout 1000000
2023-02-15 09:40:09 +00:00
RUN yarn build
2023-02-09 19:02:20 +00:00
2023-02-12 19:10:10 +00:00
FROM nginx:mainline-alpine
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
2023-02-11 20:05:46 +00:00
COPY --from=build /app/packages/app/build /usr/share/nginx/html