Skip to content

Commit 6d9fba7

Browse files
Add Dockerfile and .dockerignore
1 parent ea51507 commit 6d9fba7

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

Dockerfile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM node:10.1-alpine
2+
3+
ENV APP_DIR /src/app/
4+
5+
RUN mkdir -p $APP_DIR
6+
7+
ADD ./package.json ${APP_DIR}
8+
9+
WORKDIR $APP_DIR
10+
11+
RUN ["npm", "install"]
12+
13+
COPY . .
14+

0 commit comments

Comments
 (0)