ipld-eth-server/dockerfiles/super_node/Dockerfile

56 lines
2.1 KiB
Docker
Raw Normal View History

2019-09-05 22:47:47 +00:00
FROM golang:alpine
2019-08-26 02:13:40 +00:00
RUN apk --update --no-cache add make git g++ linux-headers
# DEBUG
RUN apk add busybox-extras
2019-09-05 22:47:47 +00:00
# this is probably a noob move, but I want apk from alpine for the above but need to avoid Go 1.13 below as this error still occurs https://github.com/ipfs/go-ipfs/issues/6603
FROM golang:1.12.4 as builder
2020-01-27 20:13:54 +00:00
RUN yum install -y libusb1-devel systemd-devel
# Get and build vulcanizedb
ADD . /go/src/github.com/vulcanize/vulcanizedb
WORKDIR /go/src/github.com/vulcanize/vulcanizedb
2019-09-05 22:47:47 +00:00
RUN GO111MODULE=on GCO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o vulcanizedb .
2019-06-14 02:12:56 +00:00
# Get and build vulcanize's go-ipfs fork
RUN go get -u -d github.com/ipfs/go-ipfs
WORKDIR /go/src/github.com/ipfs/go-ipfs
2019-06-14 02:12:56 +00:00
RUN git remote add vulcanize https://github.com/vulcanize/go-ipfs.git
RUN git fetch vulcanize
2020-01-27 20:13:54 +00:00
RUN git checkout -b pg_ipfs v0.4.22-alpha
2019-09-05 22:47:47 +00:00
RUN GO111MODULE=on GCO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o ipfs ./cmd/ipfs
# Build migration tool
RUN go get -u -d github.com/pressly/goose/cmd/goose
WORKDIR /go/src/github.com/pressly/goose/cmd/goose
2019-06-14 02:12:56 +00:00
RUN GCO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -tags='no_mysql no_sqlite' -o goose .
WORKDIR /go/src/github.com/vulcanize/vulcanizedb
# app container
FROM alpine
WORKDIR /app
ARG USER
2020-01-27 20:13:54 +00:00
ARG config_file=environments/superNode.toml
2019-06-14 02:12:56 +00:00
RUN adduser -D 5000 $USER
USER $USER
# chown first so dir is writable
# note: using $USER is merged, but not in the stable release yet
COPY --chown=5000:5000 --from=builder /go/src/github.com/vulcanize/vulcanizedb/$config_file config.toml
COPY --chown=5000:5000 --from=builder /go/src/github.com/vulcanize/vulcanizedb/dockerfiles/super_node/startup_script.sh .
# keep binaries immutable
COPY --from=builder /go/src/github.com/vulcanize/vulcanizedb/vulcanizedb vulcanizedb
COPY --from=builder /go/src/github.com/pressly/goose/cmd/goose/goose goose
COPY --from=builder /go/src/github.com/vulcanize/vulcanizedb/db/migrations migrations/vulcanizedb
2019-06-14 02:12:56 +00:00
COPY --from=builder /go/src/github.com/ipfs/go-ipfs/ipfs ipfs
2019-09-05 22:47:47 +00:00
EXPOSE 8080
2019-06-14 02:12:56 +00:00
CMD ["./startup_script.sh"]