Skip to content
This repository was archived by the owner on May 11, 2024. It is now read-only.

Commit e9f6a83

Browse files
committed
chore: update dockerfile
1 parent 618daa8 commit e9f6a83

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Dockerfile

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
FROM golang:1.21-alpine as builder
22

3-
RUN apk update && apk add --no-cache --update gcc musl-dev linux-headers git make build-base
3+
RUN apk update && apk add --no-cache --update gcc musl-dev linux-headers git make build-base ca-certificates
44

55
WORKDIR /taiko-client
66
COPY . .
77
RUN make build
88

9-
FROM alpine:latest
9+
# FROM alpine:latest
1010

11-
RUN apk add --no-cache ca-certificates
11+
# RUN apk add --no-cache ca-certificates
1212

13-
COPY --from=builder /taiko-client/bin/taiko-client /usr/local/bin/
13+
# COPY --from=builder /taiko-client/bin/taiko-client /usr/local/bin/
1414

1515
EXPOSE 6060
1616

17-
ENTRYPOINT ["taiko-client"]
17+
ENTRYPOINT ["/taiko-client/bin/taiko-client"]

0 commit comments

Comments
 (0)