Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardo-gnosis committed Aug 29, 2024
1 parent df57419 commit 2695127
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ FROM golang:1.21-alpine as builder
RUN apk add --update git gcc g++ openssh-client make
WORKDIR /app
COPY go.mod go.sum ./
RUN make dependencies
RUN make build
COPY go-relay-client/ go-relay-client/
RUN go mod download
COPY . .
RUN go get
RUN go build -o ./build/goteth


FROM alpine:latest
RUN apk --no-cache add ca-certificates
Expand Down

0 comments on commit 2695127

Please sign in to comment.