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

ENV PATH /bin:/sbin:/usr/bin

RUN apk update \
    && apk add go git

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

RUN git clone https://github.com/gammons/todolist.git \
    && mv todolist /src/github.com/gammons/

ENV GOPATH /

RUN go install github.com/gammons/todolist

CMD ["todolist", "web"]

EXPOSE 7890