Skip to content

Commit

Permalink
fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
liuzhi committed Oct 13, 2024
1 parent eb5bad9 commit 3e6bdc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.release
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20.14-alpine3.19 as build
FROM golang:1.23.2-alpine3.20 as build

ARG NODE_VERSION
ARG MAX_KEY_ID
Expand All @@ -19,11 +19,11 @@ RUN for i in $(seq 1 ${MAX_KEY_ID}); do \

WORKDIR /opt/ceremonyclient/client

RUN go build -o qclient ./main.go
RUN go mod tidy && go build -o qclient ./main.go

RUN go install github.com/fullstorydev/grpcurl/cmd/[email protected]

# FROM alpine:3.19
# FROM alpine:3.20
FROM debian:bullseye

ARG NODE_VERSION
Expand Down

0 comments on commit 3e6bdc9

Please sign in to comment.