1
0
mirror of https://github.com/nttgin/BGPalerter.git synced 2024-05-19 06:50:08 +00:00
Files
nttgin-BGPalerter/Dockerfile

14 lines
278 B
Docker
Raw Permalink Normal View History

2021-10-23 21:19:37 +02:00
# -- trivial container for BGPalerter
2023-12-24 15:24:52 +01:00
FROM node:18.19.0-alpine as build
2019-08-17 03:09:54 +02:00
WORKDIR /opt/bgpalerter
COPY . .
# Makes the final image respect /etc/timezone configuration
RUN apk add --no-cache tzdata
2022-08-16 16:47:12 +02:00
RUN npm ci --no-audit --prefer-offline
2019-08-17 03:09:54 +02:00
ENTRYPOINT ["npm"]
CMD ["run", "serve"]