We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f69747 commit 6838ef9Copy full SHA for 6838ef9
1 file changed
Dockerfile
@@ -9,15 +9,16 @@ RUN apk add --no-cache git make gcc musl-dev
9
RUN git clone https://github.com/gnolang/gno.git /gno && \
10
cd /gno && \
11
git checkout ${GNO_COMMIT}
12
+
13
# Build gnoland
14
WORKDIR /gno
15
RUN go build -o /usr/local/bin/gnoland ./gno.land/cmd/gnoland
-RUN go build -o /usr/local/bin/gnokey ./gno.land/cmd/gnokey
16
17
# Stage 2: Runtime
18
FROM alpine:3.19
19
20
RUN apk add --no-cache ca-certificates bash
-COPY --from=builder /usr/local/bin/gnokey /usr/local/bin/gnokey
21
22
COPY --from=builder /usr/local/bin/gnoland /usr/local/bin/gnoland
23
COPY --from=builder /gno /gno
24
EXPOSE 26656 26657 26660
0 commit comments