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 e9f6a83 commit cc8cc8f
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 ca-certificates
RUN apk update && apk add --no-cache --update gcc musl-dev linux-headers git make build-base

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 libstdc++

# 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/bin/taiko-client"]
ENTRYPOINT ["taiko-client"]

0 comments on commit cc8cc8f

Please sign in to comment.