aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 12194dcef0f8a3e3d02606b30dfea7e2305a92f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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

CMD ["todolist", "web"]

EXPOSE 7890