mirror of
https://github.com/matrix-org/dendrite
synced 2024-11-09 19:31:11 +01:00
24d8df664c
* Fix #897 and shuffle directory around * Update find-lint * goimports Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
9 lines
168 B
Docker
9 lines
168 B
Docker
FROM docker.io/golang:1.13.7-alpine3.11
|
|
|
|
RUN mkdir /build
|
|
|
|
WORKDIR /build
|
|
|
|
RUN apk --update --no-cache add openssl bash git build-base
|
|
|
|
CMD ["bash", "docker/build.sh"]
|