blob: 3d95492a8812b7e680e1abcecee2cc37c78eaa6f [file] [log] [blame]
BjornMagnussonXAf8b34f02019-03-22 09:48:38 +00001#Common image for both dmmapDR and dmaapDR_redir
2
3FROM node:8
4
5WORKDIR /app
6
7COPY dmaapDR.js ./
8COPY dmaapDR_redir.js ./
9COPY package*.json ./
10COPY cert/ cert/
11
12RUN npm install express
13RUN npm install argparse
14
BjornMagnussonXAf4e18362019-04-10 13:04:08 +000015#Ports for DR
16#EXPOSE 3906
17#EXPOSE 3907
18
19#Ports for DR redir
20#EXPOSE 3908
21#EXPOSE 3909