Skip to content

Commit 3f2a21f

Browse files
authored
Merge pull request #3 from industrial-edge/dependecies
updated dependencies
2 parents f2ebf80 + e63c3de commit 3f2a21f

File tree

4 files changed

+510
-429
lines changed

4 files changed

+510
-429
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src/node_modules

src/Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
FROM node:10.16.3-alpine
1+
FROM node:14.17.1-alpine
22

3+
# Create app directory
34
WORKDIR /usr/src/app
4-
5+
6+
# Install app dependencies
57
COPY package*.json ./
68

79
RUN npm install
810

11+
# Bundle app source
912
COPY . .
1013

11-
1214
CMD ["node", "server.js"]

0 commit comments

Comments
 (0)