Skip to content
This repository has been archived by the owner on Jul 2, 2019. It is now read-only.

Commit

Permalink
fix docker file by changing run to cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnthomson committed Feb 2, 2016
1 parent 3a916c3 commit 2b16ebd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ WORKDIR /usr/src/app
# use this to test a SLACK_TOKEN environment variable
# ENV SLACK_TOKEN ###token###

RUN python run.py
CMD python run.py
2 changes: 2 additions & 0 deletions slackbot/settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import sys

DEBUG = False

Expand All @@ -14,6 +15,7 @@
# Alternatively, place slack token in the source code
# API_TOKEN = '###token###'
print 'SLACK_TOKEN missing'
sys.exit(1)

'''
If you use Slack Web API to send messages (with send_webapi() or reply_webapi()),
Expand Down

0 comments on commit 2b16ebd

Please sign in to comment.