Skip to content

Commit 640036d

Browse files
committed
v0.51.0
1 parent 7ad5e48 commit 640036d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Dockerfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
FROM golang:1.12-alpine AS builder
1+
FROM golang:1.13-alpine3.11 AS builder
22

33
RUN mkdir -p /src/src
44
WORKDIR /usr/src
55

6-
ENV GOOGLE_CLOUD_GO_VERSION v0.39.0
6+
ENV GOOGLE_CLOUD_GO_VERSION v0.51.0
77

88
RUN apk add --no-cache git
99

1010
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
11+
&& cd bigtable \
12+
&& go install -v ./cmd/emulator
1213

13-
FROM alpine:3.9
14+
FROM alpine:3.11
1415

1516
COPY --from=builder /go/bin/emulator /bin/cbtemulator
1617

0 commit comments

Comments
 (0)