Skip to content

Commit

Permalink
docker
Browse files Browse the repository at this point in the history
  • Loading branch information
filip committed May 16, 2021
1 parent 9a76889 commit c4bf6f7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
Binary file added ..dockerignore.un~
Binary file not shown.
Binary file added .Dockerfile.un~
Binary file not shown.
2 changes: 2 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
package-lock.json
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM node
RUN mkdir /project
WORKDIR /project
COPY . .
RUN npm install
RUN npx tsc
CMD node index.js

0 comments on commit c4bf6f7

Please sign in to comment.