2021-08-18 08:13:38 -05:00
|
|
|
FROM docker.io/golang:1.17-alpine AS base
|
2021-01-18 06:24:23 -06:00
|
|
|
|
|
|
|
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 10:11:24 -05:00
|
|
|
|
|
|
|
FROM alpine:latest
|
|
|
|
|
2021-03-03 05:20:40 -06:00
|
|
|
COPY --from=base /build/bin/* /usr/bin/
|
2020-10-20 10:11:24 -05:00
|
|
|
|
|
|
|
VOLUME /etc/dendrite
|
|
|
|
WORKDIR /etc/dendrite
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/dendrite-monolith-server"]
|