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

Commit

Permalink
chore: update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha committed Feb 9, 2024
1 parent 618daa8 commit e9f6a83
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
FROM golang:1.21-alpine as builder

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

WORKDIR /taiko-client
COPY . .
RUN make build

FROM alpine:latest
# FROM alpine:latest

RUN apk add --no-cache ca-certificates
# RUN apk add --no-cache ca-certificates

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

EXPOSE 6060

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

0 comments on commit e9f6a83

Please sign in to comment.