This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM node:6-alpine | |
MAINTAINER Chun-Kai Wang <chunkai1312@gmail.com> | |
# install git | |
RUN apk add --no-cache git | |
# create app folder | |
RUN mkdir /app | |
COPY . /app |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
module.exports = { | |
slack: { | |
webhookUri: '__uri__', | |
options: { | |
channel: '#my_channel', | |
username: '#my_bot' | |
} | |
} |