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
2019-06-10 17:17:14 +00:00
# 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
# Get and build vulcanizedb
ADD . /go/src/github.com/vulcanize/vulcanizedb
2019-06-10 17:17:14 +00:00
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-10 17:17:14 +00:00
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
2019-06-10 17:17:14 +00:00
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-03-02 22:30:46 +00:00
RUN git checkout -b pg_ipfs vulcanize/postgres_update
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
2019-06-10 17:17:14 +00:00
# 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 .
2019-06-10 17:17:14 +00:00
WORKDIR /go/src/github.com/vulcanize/vulcanizedb
# app container
FROM alpine
WORKDIR /app
ARG USER
2020-02-10 17:16:57 +00:00
ARG CONFIG_FILE
ARG EXPOSE_PORT_1
ARG EXPOSE_PORT_2
2020-02-13 22:50:56 +00:00
ARG EXPOSE_PORT_3
ARG EXPOSE_PORT_4
2019-06-10 17:17:14 +00:00
2019-06-14 02:12:56 +00:00
RUN adduser -D 5000 $USER
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-02-10 17:16:57 +00:00
COPY --chown= 5000:5000 --from= builder /go/src/github.com/vulcanize/vulcanizedb/$CONFIG_FILE config.toml
2019-10-02 14:10:37 +00:00
COPY --chown= 5000:5000 --from= builder /go/src/github.com/vulcanize/vulcanizedb/dockerfiles/super_node/startup_script.sh .
2019-06-10 17:17:14 +00:00
# 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
2020-03-02 22:30:46 +00:00
RUN touch vulcanizedb.log
2019-06-10 17:17:14 +00:00
2020-02-10 17:16:57 +00:00
EXPOSE $EXPOSE_PORT_1
EXPOSE $EXPOSE_PORT_2
2020-02-13 22:50:56 +00:00
EXPOSE $EXPOSE_PORT_3
EXPOSE $EXPOSE_PORT_4
2019-06-14 02:12:56 +00:00
2019-06-10 17:17:14 +00:00
CMD [ "./startup_script.sh" ]