FROM golang:alpine MAINTAINER Quey-Liang Kao # 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