Skip to content

Instantly share code, notes, and snippets.

View chunkai1312's full-sized avatar

Chun-Kai Wang chunkai1312

View GitHub Profile
@chunkai1312
chunkai1312 / Dockerfile
Created June 14, 2017 19:57
Dockerfile for Node.js Applications
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
@chunkai1312
chunkai1312 / config.js
Last active December 13, 2016 07:44
A simple Slack notifier implementation
'use strict'
module.exports = {
slack: {
webhookUri: '__uri__',
options: {
channel: '#my_channel',
username: '#my_bot'
}
}