2024-04-17 11:33:39 +00:00
|
|
|
FROM golang:1.21-alpine as debugger
|
2019-06-10 17:17:14 +00:00
|
|
|
|
2023-01-25 22:10:29 +00:00
|
|
|
# Include dlv
|
|
|
|
RUN go install github.com/go-delve/delve/cmd/dlv@latest
|
|
|
|
|
2024-04-17 11:33:39 +00:00
|
|
|
FROM golang:1.21-alpine as builder
|
2023-09-21 06:55:26 +00:00
|
|
|
|
|
|
|
RUN apk --update --no-cache add gcc musl-dev binutils-gold git
|
|
|
|
|
2020-09-06 09:32:11 +00:00
|
|
|
# Build ipld-eth-server
|
2022-09-20 15:52:06 +00:00
|
|
|
WORKDIR /go/src/github.com/cerc-io/ipld-eth-server
|
2021-06-10 07:42:40 +00:00
|
|
|
|
2023-09-21 06:55:26 +00:00
|
|
|
ARG GIT_VDBTO_TOKEN
|
|
|
|
|
2021-06-10 07:42:40 +00:00
|
|
|
# Cache the modules
|
|
|
|
ENV GO111MODULE=on
|
|
|
|
COPY go.mod .
|
|
|
|
COPY go.sum .
|
2023-09-21 06:55:26 +00:00
|
|
|
RUN if [ -n "$GIT_VDBTO_TOKEN" ]; then git config --global url."https://$GIT_VDBTO_TOKEN:@git.vdb.to/".insteadOf "https://git.vdb.to/"; fi && \
|
|
|
|
go mod download && \
|
|
|
|
rm -f ~/.gitconfig
|
2021-06-10 07:42:40 +00:00
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Build the binary
|
2023-04-14 06:26:46 +00:00
|
|
|
RUN GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o ipld-eth-server .
|
2019-06-10 17:17:14 +00:00
|
|
|
|
|
|
|
# app container
|
|
|
|
FROM alpine
|
|
|
|
|
2020-09-06 09:32:11 +00:00
|
|
|
ARG USER="vdm"
|
|
|
|
ARG CONFIG_FILE="./environments/example.toml"
|
2019-06-10 17:17:14 +00:00
|
|
|
|
2020-03-08 16:49:50 +00:00
|
|
|
RUN adduser -Du 5000 $USER
|
|
|
|
WORKDIR /app
|
|
|
|
RUN chown $USER /app
|
2019-06-10 17:17:14 +00:00
|
|
|
USER $USER
|
|
|
|
|
|
|
|
# chown first so dir is writable
|
|
|
|
# note: using $USER is merged, but not in the stable release yet
|
2022-09-20 15:52:06 +00:00
|
|
|
COPY --chown=5000:5000 --from=builder /go/src/github.com/cerc-io/ipld-eth-server/$CONFIG_FILE config.toml
|
|
|
|
COPY --chown=5000:5000 --from=builder /go/src/github.com/cerc-io/ipld-eth-server/entrypoint.sh .
|
2019-06-10 17:17:14 +00:00
|
|
|
|
2020-03-08 16:49:50 +00:00
|
|
|
|
2019-06-10 17:17:14 +00:00
|
|
|
# keep binaries immutable
|
2022-09-20 15:52:06 +00:00
|
|
|
COPY --from=builder /go/src/github.com/cerc-io/ipld-eth-server/ipld-eth-server ipld-eth-server
|
|
|
|
COPY --from=builder /go/src/github.com/cerc-io/ipld-eth-server/environments environments
|
2019-06-10 17:17:14 +00:00
|
|
|
|
2023-01-25 22:10:29 +00:00
|
|
|
# Allow for debugging
|
2023-09-21 06:55:26 +00:00
|
|
|
COPY --from=debugger /go/bin/dlv /usr/local/bin/
|
2023-01-25 22:10:29 +00:00
|
|
|
|
2020-09-06 09:32:11 +00:00
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|