0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-30 06:48:57 +02:00
dendrite/build/docker/Dockerfile.monolith

22 lines
502 B
Docker
Raw Normal View History

2021-08-18 15:13:38 +02:00
FROM docker.io/golang:1.17-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
FROM alpine:latest
COPY --from=base /build/bin/* /usr/bin/
VOLUME /etc/dendrite
WORKDIR /etc/dendrite
ENTRYPOINT ["/usr/bin/dendrite-monolith-server"]