-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
liuzhi
committed
Oct 13, 2024
1 parent
eb5bad9
commit 3e6bdc9
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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 | ||
|