13 lines
434 B
Docker
13 lines
434 B
Docker
FROM node:current as build
|
|
WORKDIR /src
|
|
RUN apt update \
|
|
&& apt install -y --no-install-recommends git \
|
|
&& git clone --single-branch -b main https://git.v0l.io/Kieran/snort \
|
|
&& cd snort \
|
|
&& yarn --network-timeout 1000000 \
|
|
&& yarn build
|
|
|
|
FROM nginxinc/nginx-unprivileged:mainline-alpine
|
|
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=build /src/snort/packages/app/build /usr/share/nginx/html
|