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

Merge pull request #11 from wk/introduce-dockerfile

introduce trivial dockerfile
This commit is contained in:
nttgin-buildbot
2019-09-03 21:44:21 +02:00
committed by GitHub

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
# -- trivial container for bgpalerter
FROM node:10-alpine as build
WORKDIR /opt/bgpalerter
COPY . .
RUN yarn
ENTRYPOINT ["npm"]
CMD ["run", "serve"]