Skip to content

Commit 626a12f

Browse files
committed
Change to follow Dockerfile best practices
1 parent ec9080f commit 626a12f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

config_coordinator/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Start from a Debian image with the latest version of Go installed
1+
# Start from a Debian image with the desired version of Go installed
22
# and a workspace (GOPATH) configured at /go.
3-
FROM golang
3+
FROM golang:1.9.2
44

55
# Copy the local files to the container's workspace.
6-
ADD . /go/src/github.com/oracle/config_coordinator
6+
COPY . /go/src/github.com/oracle/config_coordinator
77

88
# Build the config_coordinator command inside the container.
99
RUN go install github.com/oracle/config_coordinator

0 commit comments

Comments
 (0)