2024-07-01 13:52:21 +00:00
|
|
|
FROM golang:1.21-alpine as builder
|
2020-10-16 15:12:21 +00:00
|
|
|
|
2024-07-01 13:52:21 +00:00
|
|
|
RUN apk --update --no-cache add gcc libc-dev
|
2020-10-16 15:12:21 +00:00
|
|
|
# DEBUG
|
|
|
|
RUN apk add busybox-extras
|
|
|
|
|
2022-12-21 15:59:07 +00:00
|
|
|
# Get and build tx-spammer
|
|
|
|
WORKDIR /go/src/github.com/cerc-io/tx-spammer
|
2024-07-01 13:52:21 +00:00
|
|
|
|
|
|
|
ENV GO111MODULE=on
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o tx-spammer .
|
2020-10-16 15:12:21 +00:00
|
|
|
|
|
|
|
# app container
|
|
|
|
FROM alpine
|
|
|
|
|
|
|
|
ARG USER="vdm"
|
|
|
|
ARG CONFIG_FILE="./environments/example.toml"
|
|
|
|
|
|
|
|
RUN adduser -Du 5000 $USER
|
|
|
|
WORKDIR /app
|
|
|
|
RUN chown $USER /app
|
|
|
|
USER $USER
|
|
|
|
|
|
|
|
# chown first so dir is writable
|
|
|
|
# note: using $USER is merged, but not in the stable release yet
|
2022-12-21 15:59:07 +00:00
|
|
|
COPY --chown=5000:5000 --from=builder /go/src/github.com/cerc-io/tx-spammer/$CONFIG_FILE config.toml
|
|
|
|
COPY --chown=5000:5000 --from=builder /go/src/github.com/cerc-io/tx-spammer/startup_script.sh .
|
2020-10-16 15:12:21 +00:00
|
|
|
|
|
|
|
# keep binaries immutable
|
2022-12-21 15:59:07 +00:00
|
|
|
COPY --from=builder /go/src/github.com/cerc-io/tx-spammer/tx-spammer tx-spammer
|
|
|
|
COPY --from=builder /go/src/github.com/cerc-io/tx-spammer/environments environments
|
|
|
|
COPY --from=builder /go/src/github.com/cerc-io/tx-spammer/sol sol
|
2020-10-16 15:12:21 +00:00
|
|
|
|
2022-11-03 02:33:18 +00:00
|
|
|
ENTRYPOINT ["/app/startup_script.sh"]
|