Skip to content
Open
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ FROM golang
ADD . /go/src/github.com/google/web-api-gateway

RUN go get github.com/google/web-api-gateway/server
RUN go install github.com/google/web-api-gateway/server
RUN go install github.com/google/web-api-gateway/setuptool
RUN go install github.com/google/web-api-gateway/connectiontest
RUN go install github.com/google/web-api-gateway/server@latest
RUN go install github.com/google/web-api-gateway/setuptool@latest
RUN go install github.com/google/web-api-gateway/connectiontest@latest

ENTRYPOINT ["/go/bin/server"]

Expand Down