-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #613 from okushchenko/add-dep
Replace godep with dep
- Loading branch information
Showing
1,205 changed files
with
331,906 additions
and
34,405 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
FROM alpine:3.4 | ||
FROM golang:1.9-alpine | ||
|
||
ENV GOPATH /go | ||
|
||
RUN mkdir -p "$GOPATH/src/" "$GOPATH/bin" && chmod -R 777 "$GOPATH" && \ | ||
mkdir -p /go/src/github.com/kelseyhightower/confd | ||
|
||
RUN apk --update add go bash && \ | ||
ln -s /go/src/github.com/kelseyhightower/confd /app | ||
RUN apk add --no-cache make | ||
RUN mkdir -p /go/src/github.com/kelseyhightower/confd && \ | ||
ln -s /go/src/github.com/kelseyhightower/confd /app | ||
|
||
WORKDIR /app |
Oops, something went wrong.