aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: a6a6a4efbf0aa0764e5710439f4cc57ec859e0cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM golang:alpine
MAINTAINER Quey-Liang Kao <s101062801@m101.nthu.edu.tw>
# Last Modified: 2017/01/21

RUN apk update && apk add git

RUN mkdir -p /src/github.com/gammons/

RUN go-wrapper download github.com/gammons/todolist
RUN go-wrapper install github.com/gammons/todolist

RUN ln -s /.todos.json $HOME/.todos.json

CMD ["todolist", "web"]

EXPOSE 7890