Initial commit
This commit is contained in:
parent
a1b141d5b3
commit
28a6fbb8f1
9 changed files with 1260 additions and 0 deletions
7
src/currencyservice/Dockerfile
Normal file
7
src/currencyservice/Dockerfile
Normal file
|
@ -0,0 +1,7 @@
|
|||
FROM node:8
|
||||
WORKDIR /usr/src/app
|
||||
COPY package*.json ./
|
||||
RUN npm install --only=production
|
||||
COPY . .
|
||||
EXPOSE 31337
|
||||
CMD [ "node", "server.js" ]
|
Loading…
Add table
Add a link
Reference in a new issue