2020-03-18 17:21:29 +00:00
FROM golang:alpine
RUN apk --update --no-cache add make git g++ linux-headers
# DEBUG
RUN apk add busybox-extras
# 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-08-05 16:02:39 +00:00
# Get and build ipfs-blockchain-watcher
2020-06-22 18:12:32 +00:00
ADD . /go/src/github.com/vulcanize/ipfs-blockchain-watcher
2020-03-18 17:21:29 +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
RUN GCO_ENABLED = 0 GOOS = linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -tags= 'no_mysql no_sqlite' -o goose .
2020-06-22 18:12:32 +00:00
WORKDIR /go/src/github.com/vulcanize/ipfs-blockchain-watcher
2020-03-18 17:21:29 +00:00
# app container
FROM alpine
ARG USER
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
2020-06-22 18:12:32 +00:00
COPY --chown= 5000:5000 --from= builder /go/src/github.com/vulcanize/ipfs-blockchain-watcher/dockerfiles/migrations/startup_script.sh .
2020-03-18 17:21:29 +00:00
# keep binaries immutable
COPY --from= builder /go/src/github.com/pressly/goose/cmd/goose/goose goose
2020-06-22 18:12:32 +00:00
COPY --from= builder /go/src/github.com/vulcanize/ipfs-blockchain-watcher/db/migrations migrations/vulcanizedb
2020-03-18 17:21:29 +00:00
# XXX dir is already writeable RUN touch vulcanizedb.log
CMD [ "./startup_script.sh" ]