Skip to content

Commit 109f6a5

Browse files
committed
Fixes some problems with the Dockerfile.
1 parent 9801961 commit 109f6a5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
FROM node:6
22

33
COPY package.json /app/package.json
4+
WORKDIR /app
45
RUN npm install
56

7+
COPY tsconfig.json /app/tsconfig.json
68
COPY source/ /app/source/
79
COPY tests/ /app/tests/
8-
WORKDIR /app
10+
COPY typings/ /app/typings/
911

1012
RUN npm run build
1113

12-
ENTRYPOINT [ "npm", "run", "test" ]
14+
ENTRYPOINT [ "npm", "test" ]

0 commit comments

Comments
 (0)