Skip to content

Commit 11daeb2

Browse files
committed
docker stuff
1 parent b09aabb commit 11daeb2

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.Dockerignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
node_modules
2+
.DS_Store*
3+
.hubot_history
4+
.env
5+
*.rdb
6+
*.pid
7+
*.log
8+
hackmit-money-2015-credentials.json
9+
*.*~

Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:latest
2+
3+
ARG APP_PATH=/hackbot
4+
5+
COPY package.json $APP_PATH/package.json
6+
7+
WORKDIR $APP_PATH
8+
9+
RUN npm install
10+
11+
COPY . $APP_PATH
12+
13+
ENTRYPOINT ["./bin/hubot", "-a", "slack"]

0 commit comments

Comments
 (0)