We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ad5e48 commit 640036dCopy full SHA for 640036d
Dockerfile
@@ -1,16 +1,17 @@
1
-FROM golang:1.12-alpine AS builder
+FROM golang:1.13-alpine3.11 AS builder
2
3
RUN mkdir -p /src/src
4
WORKDIR /usr/src
5
6
-ENV GOOGLE_CLOUD_GO_VERSION v0.39.0
+ENV GOOGLE_CLOUD_GO_VERSION v0.51.0
7
8
RUN apk add --no-cache git
9
10
RUN git clone --depth=1 --branch="$GOOGLE_CLOUD_GO_VERSION" https://github.com/googleapis/google-cloud-go.git . \
11
- && go install -v ./bigtable/cmd/emulator
+ && cd bigtable \
12
+ && go install -v ./cmd/emulator
13
-FROM alpine:3.9
14
+FROM alpine:3.11
15
16
COPY --from=builder /go/bin/emulator /bin/cbtemulator
17
0 commit comments