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

Commit

Permalink
Merge pull request BeepBoopHQ#2 from BeepBoopHQ/fixDockerfile
Browse files Browse the repository at this point in the history
fix docker file by changing run to cmd
  • Loading branch information
mbrevoort committed Mar 10, 2016
2 parents 3a916c3 + 2b16ebd commit d89240f
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 d89240f

Please sign in to comment.