aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/datafilecollector-testharness/dr-sim/Dockerfile
blob: b429c72febf8cf1d85a08cc829208fe1ca472e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#Common image for both dmmapDR and dmaapDR_redir

FROM node:14

WORKDIR /app

COPY dmaapDR.js ./
COPY dmaapDR_redir.js ./
COPY package*.json ./

RUN npm install express
RUN npm install argparse

#Ports for DR
#EXPOSE 3906
#EXPOSE 3907

#Ports for DR redir
#EXPOSE 3908
#EXPOSE 3909