2021-01-18 12:24:23 +00: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-monolith-server
|
|
|
|
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 15:11:24 +00:00
|
|
|
|
|
|
|
FROM alpine:latest
|
|
|
|
|
2021-01-18 12:24:23 +00:00
|
|
|
COPY --from=base /build/bin/* /usr/bin
|
2020-10-20 15:11:24 +00:00
|
|
|
|
|
|
|
VOLUME /etc/dendrite
|
|
|
|
WORKDIR /etc/dendrite
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/dendrite-monolith-server"]
|