Skip to content

Commit 6838ef9

Browse files
committed
Revert "fix workdir"
This reverts commit 4f69747.
1 parent 4f69747 commit 6838ef9

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@ RUN apk add --no-cache git make gcc musl-dev
99
RUN git clone https://github.com/gnolang/gno.git /gno && \
1010
cd /gno && \
1111
git checkout ${GNO_COMMIT}
12+
1213
# Build gnoland
1314
WORKDIR /gno
1415
RUN go build -o /usr/local/bin/gnoland ./gno.land/cmd/gnoland
15-
RUN go build -o /usr/local/bin/gnokey ./gno.land/cmd/gnokey
16+
1617
# Stage 2: Runtime
1718
FROM alpine:3.19
1819

1920
RUN apk add --no-cache ca-certificates bash
20-
COPY --from=builder /usr/local/bin/gnokey /usr/local/bin/gnokey
21+
2122
COPY --from=builder /usr/local/bin/gnoland /usr/local/bin/gnoland
2223
COPY --from=builder /gno /gno
2324
EXPOSE 26656 26657 26660

0 commit comments

Comments
 (0)