mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-05 23:48:58 +01:00
67784ecb56
* Remove old Docker stuff * Move hub stuff to upper level docker directory * Build monolith images * Update README.md * Update paths * Update README.md
10 lines
No EOL
166 B
Docker
10 lines
No EOL
166 B
Docker
FROM docker.io/golang:1.13.7-alpine3.11 AS builder
|
|
|
|
RUN apk --update --no-cache add bash build-base
|
|
|
|
WORKDIR /build
|
|
|
|
COPY . /build
|
|
|
|
RUN mkdir -p bin
|
|
RUN sh ./build.sh |