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
152 B
Docker
Raw Normal View History

2019-08-17 03:09:54 +02:00
# -- trivial container for bgpalerter
FROM node:10-alpine as build
WORKDIR /opt/bgpalerter
COPY . .
RUN yarn
ENTRYPOINT ["npm"]
CMD ["run", "serve"]