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

11 lines
159 B
Docker
Raw Normal View History

2019-08-17 03:09:54 +02:00
# -- trivial container for bgpalerter
2020-01-22 16:00:34 +01:00
FROM node:12-alpine as build
2019-08-17 03:09:54 +02:00
WORKDIR /opt/bgpalerter
COPY . .
2020-01-17 03:42:26 +01:00
RUN npm install
2019-08-17 03:09:54 +02:00
ENTRYPOINT ["npm"]
CMD ["run", "serve"]