Skip to content
Snippets Groups Projects
Dockerfile.build 136 B
Newer Older
  • Learn to ignore specific revisions
  • Alex Ellis's avatar
    Alex Ellis committed
    FROM golang:1.7.3
    RUN mkdir -p /go/src/fwatchdog
    COPY main.go /go/src/fwatchdog
    WORKDIR /go/src/fwatchdog
    RUN go get -d -v
    RUN go build