2021-01-18 13:24:23 +01:00
|
|
|
FROM docker.io/golang:1.15-alpine AS base
|
|
|
|
|
|
|
|
RUN apk --update --no-cache add bash build-base
|
|
|
|
|
|
|
|
WORKDIR /build
|
|
|
|
|
|
|
|
COPY . /build
|
|
|
|
|
|
|
|
RUN mkdir -p bin
|
|
|
|
RUN go build -trimpath -o bin/ ./cmd/dendrite-polylith-multi
|
|
|
|
RUN go build -trimpath -o bin/ ./cmd/goose
|
|
|
|
RUN go build -trimpath -o bin/ ./cmd/create-account
|
|
|
|
RUN go build -trimpath -o bin/ ./cmd/generate-keys
|
2020-10-20 17:11:24 +02:00
|
|
|
|
|
|
|
FROM alpine:latest
|
|
|
|
|
2021-03-03 12:20:40 +01:00
|
|
|
COPY --from=base /build/bin/* /usr/bin/
|
2020-10-20 17:11:24 +02:00
|
|
|
|
|
|
|
VOLUME /etc/dendrite
|
|
|
|
WORKDIR /etc/dendrite
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/dendrite-polylith-multi"]
|