Skip to content

Commit

Permalink
Fix build by swithcing to golang:1.17-alpine3.13 (cadence-workflow#4641)
Browse files Browse the repository at this point in the history
Co-authored-by: Quanzheng Long <[email protected]>
  • Loading branch information
vytautas-karpavicius and longquanzheng authored Nov 17, 2021
1 parent 9d40c45 commit 4461fe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ ARG TARGET=server
ARG GOPROXY

# Build tcheck binary
FROM golang:1.17-alpine AS tcheck
FROM golang:1.17-alpine3.13 AS tcheck

WORKDIR /go/src/github.com/uber/tcheck

COPY go.* ./
RUN go build -mod=readonly -o /go/bin/tcheck github.com/uber/tcheck

# Build Cadence binaries
FROM golang:1.17-alpine AS builder
FROM golang:1.17-alpine3.13 AS builder

ARG RELEASE_VERSION

Expand Down

0 comments on commit 4461fe0

Please sign in to comment.