mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-07-31 13:22:46 +00:00
Add support for running Complement on current working directories (#1291)
This will be used in the future by Buildkite to run on CI.
This commit is contained in:
parent
6d6bb75137
commit
ec95d331a5
2 changed files with 41 additions and 0 deletions
22
build/scripts/Complement.Dockerfile
Normal file
22
build/scripts/Complement.Dockerfile
Normal file
|
@ -0,0 +1,22 @@
|
|||
FROM golang:1.13-stretch as build
|
||||
RUN apt-get update && apt-get install sqlite3
|
||||
WORKDIR /build
|
||||
|
||||
# Utilise Docker caching when downloading dependencies, this stops us needlessly
|
||||
# downloading dependencies every time.
|
||||
COPY go.mod .
|
||||
COPY go.sum .
|
||||
RUN go mod download
|
||||
|
||||
COPY . .
|
||||
RUN go build ./cmd/dendrite-monolith-server
|
||||
RUN go build ./cmd/generate-keys
|
||||
RUN go build ./cmd/generate-config
|
||||
RUN ./generate-config > dendrite.yaml
|
||||
RUN sed -i "s/disable_tls_validation: false/disable_tls_validation: true/g" dendrite.yaml
|
||||
RUN ./generate-keys --private-key matrix_key.pem --tls-cert server.crt --tls-key server.key
|
||||
|
||||
ENV SERVER_NAME=localhost
|
||||
EXPOSE 8008 8448
|
||||
|
||||
CMD sed -i "s/server_name: localhost/server_name: ${SERVER_NAME}/g" dendrite.yaml && ./dendrite-monolith-server --tls-cert server.crt --tls-key server.key --config dendrite.yaml
|
Loading…
Add table
Add a link
Reference in a new issue