Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bookings/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# golang image where workspace (GOPATH) configured at /go.
FROM golang:1.6
FROM golang:latest

# Install dependencies
RUN go get gopkg.in/mgo.v2
Expand Down
2 changes: 1 addition & 1 deletion movies/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# golang image where workspace (GOPATH) configured at /go.
FROM golang:1.6
FROM golang:latest

# Install dependencies
RUN go get gopkg.in/mgo.v2
Expand Down
2 changes: 1 addition & 1 deletion showtimes/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# golang image where workspace (GOPATH) configured at /go.
FROM golang:1.6
FROM golang:latest

# Install dependencies
RUN go get gopkg.in/mgo.v2
Expand Down
2 changes: 1 addition & 1 deletion users/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# golang image where workspace (GOPATH) configured at /go.
FROM golang:1.6
FROM golang:latest

# Install dependencies
RUN go get gopkg.in/mgo.v2
Expand Down