2020-08-08 05:56:33 +00:00
|
|
|
FROM golang:1.13-alpine as builder
|
2019-08-26 02:13:40 +00:00
|
|
|
|
|
|
|
RUN apk --update --no-cache add make git g++ linux-headers
|
2019-06-10 17:17:14 +00:00
|
|
|
# DEBUG
|
|
|
|
RUN apk add busybox-extras
|
|
|
|
|
2020-09-06 09:32:11 +00:00
|
|
|
# Build ipld-eth-server
|
2020-08-31 15:52:47 +00:00
|
|
|
WORKDIR /go/src/github.com/vulcanize/ipld-eth-server
|
2020-09-06 09:32:11 +00:00
|
|
|
ADD . .
|
2020-08-31 15:52:47 +00:00
|
|
|
RUN GO111MODULE=on GCO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o ipld-eth-server .
|
2019-06-10 17:17:14 +00:00
|
|
|
|
2020-09-06 09:32:11 +00:00
|
|
|
# Copy migration tool
|
2020-08-08 05:56:33 +00:00
|
|
|
WORKDIR /
|
2020-09-06 09:32:11 +00:00
|
|
|
ARG GOOSE_VER="v2.6.0"
|
|
|
|
ADD https://github.com/pressly/goose/releases/download/${GOOSE_VER}/goose-linux64 ./goose
|
|
|
|
RUN chmod +x ./goose
|
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
|
2020-08-31 15:52:47 +00:00
|
|
|
COPY --chown=5000:5000 --from=builder /go/src/github.com/vulcanize/ipld-eth-server/$CONFIG_FILE config.toml
|
2020-09-06 09:32:11 +00:00
|
|
|
COPY --chown=5000:5000 --from=builder /go/src/github.com/vulcanize/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
|
2020-08-31 15:52:47 +00:00
|
|
|
COPY --from=builder /go/src/github.com/vulcanize/ipld-eth-server/ipld-eth-server ipld-eth-server
|
2020-09-06 09:32:11 +00:00
|
|
|
COPY --from=builder /goose goose
|
2020-08-31 15:52:47 +00:00
|
|
|
COPY --from=builder /go/src/github.com/vulcanize/ipld-eth-server/db/migrations migrations/vulcanizedb
|
|
|
|
COPY --from=builder /go/src/github.com/vulcanize/ipld-eth-server/environments environments
|
2019-06-10 17:17:14 +00:00
|
|
|
|
2020-09-06 09:32:11 +00:00
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|