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

14 lines
245 B
Docker

# -- trivial container for BGPalerter
FROM node:14-alpine as build
WORKDIR /opt/bgpalerter
COPY . .
# Makes the final image respect /etc/timezone configuration
RUN apk add --no-cache tzdata
RUN npm ci
ENTRYPOINT ["npm"]
CMD ["run", "serve"]