2019-06-10 17:17:14 +00:00
|
|
|
FROM golang:alpine as builder
|
|
|
|
|
2019-08-26 02:13:40 +00:00
|
|
|
ENV GO111MODULE=on
|
|
|
|
|
|
|
|
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-08-26 02:13:40 +00:00
|
|
|
# Get and build vulcanizedb ipfs_concurreny fork
|
2019-06-14 02:12:56 +00:00
|
|
|
RUN go get -u -d github.com/vulcanize/vulcanizedb
|
2019-06-10 17:17:14 +00:00
|
|
|
WORKDIR /go/src/github.com/vulcanize/vulcanizedb
|
2019-06-25 20:31:14 +00:00
|
|
|
RUN git checkout ipfs_concurrency
|
2019-06-14 02:12:56 +00:00
|
|
|
RUN 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
|
|
|
|
RUN git checkout -b pg_ipfs vulcanize/postgres_update
|
|
|
|
RUN 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
|
|
|
|
2019-06-14 02:12:56 +00:00
|
|
|
# Get and build vulcanize's geth fork
|
|
|
|
RUN go get -u -d github.com/ethereum/go-ethereum
|
2019-06-10 17:17:14 +00:00
|
|
|
WORKDIR /go/src/github.com/ethereum/go-ethereum
|
2019-06-14 02:12:56 +00:00
|
|
|
RUN git remote add vulcanize https://github.com/vulcanize/go-ethereum.git
|
|
|
|
RUN git fetch vulcanize
|
|
|
|
RUN git checkout -b statediff_geth vulcanize/rpc_statediffing
|
|
|
|
RUN GCO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o geth ./cmd/geth
|
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
|
2019-06-14 02:12:56 +00:00
|
|
|
ARG config_file=environments/syncPublishScreenAndServe.toml
|
2019-06-10 17:17:14 +00:00
|
|
|
ARG vdb_dbname="vulcanize_public"
|
2019-06-14 02:12:56 +00:00
|
|
|
ARG vdb_hostname="localhost"
|
|
|
|
ARG vdb_port="5432"
|
|
|
|
ARG vdb_user="postgres"
|
|
|
|
ARG vdb_password
|
2019-06-10 17:17:14 +00:00
|
|
|
|
|
|
|
# setup environment
|
2019-06-14 02:12:56 +00:00
|
|
|
ENV VDB_PG_NAME="$vdb_dbname"
|
|
|
|
ENV VDB_PG_HOSTNAME="$vdb_hostname"
|
|
|
|
ENV VDB_PG_PORT="$vdb_port"
|
|
|
|
ENV VDB_PG_USER="$vdb_user"
|
|
|
|
ENV VDB_PG_PASSWORD="$vdb_password"
|
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
|
|
|
|
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/seed_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
|
|
|
|
COPY --from=builder /go/src/github.com/ethereum/go-ethereum/geth geth
|
2019-06-10 17:17:14 +00:00
|
|
|
|
|
|
|
# DEBUG
|
|
|
|
COPY --from=builder /usr/bin/telnet /bin/telnet
|
|
|
|
|
2019-06-14 02:12:56 +00:00
|
|
|
EXPOSE 80
|
|
|
|
|
2019-06-10 17:17:14 +00:00
|
|
|
CMD ["./startup_script.sh"]
|