Skip to content
This repository was archived by the owner on May 30, 2019. It is now read-only.

Commit 6653572

Browse files
committed
Add docker scripts
1 parent 87b0ef0 commit 6653572

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.dockerignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Thank you http://bit.ly/2KYNd1q
2+
# Ignore everything
3+
**
4+
5+
# Allow files and directories
6+
!./package.json
7+
!/docker/

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM node:11-stretch-slim
2+
3+
WORKDIR /pkgs
4+
5+
ADD package.json /pkgs/
6+
7+
RUN ls

0 commit comments

Comments
 (0)