Skip to content

Commit

Permalink
Merge pull request #796 from matrix-org/neilalexander/dendrite-golang
Browse files Browse the repository at this point in the history
Update dendrite.Dockerfile
  • Loading branch information
neilalexander authored Feb 6, 2020
2 parents 4bb7f49 + 36e9381 commit 4b6cc83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ docker build --pull ../ -f base.Dockerfile --build-arg DEBIAN_VERSION=bullseye -
docker build ../ -f synapse.Dockerfile --build-arg DEBIAN_VERSION=stretch -t matrixdotorg/sytest-synapse:py35
docker build ../ -f synapse.Dockerfile --build-arg DEBIAN_VERSION=buster -t matrixdotorg/sytest-synapse:py37
docker build ../ -f synapse.Dockerfile --build-arg DEBIAN_VERSION=bullseye -t matrixdotorg/sytest-synapse:py38
docker build ../ -f dendrite.Dockerfile --build-arg DEBIAN_VERSION=stretch --build-arg GO_VERSION="1.11.13" -t matrixdotorg/sytest-dendrite:go111 -t matrixdotorg/sytest-dendrite:latest
docker build ../ -f dendrite.Dockerfile --build-arg DEBIAN_VERSION=stretch --build-arg GO_VERSION="1.13.4" -t matrixdotorg/sytest-dendrite:go113
docker build ../ -f dendrite.Dockerfile --build-arg DEBIAN_VERSION=stretch --build-arg GO_VERSION="1.11.13" -t matrixdotorg/sytest-dendrite:go111
docker build ../ -f dendrite.Dockerfile --build-arg DEBIAN_VERSION=stretch --build-arg GO_VERSION="1.13.7" -t matrixdotorg/sytest-dendrite:go113 -t matrixdotorg/sytest-dendrite:latest
4 changes: 1 addition & 3 deletions docker/dendrite.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
ARG DEBIAN_VERSION=buster

FROM matrixdotorg/sytest:${DEBIAN_VERSION}

ARG GO_VERSION
ARG GO_VERSION=1.13.7
ENV GO_DOWNLOAD https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz

# Install Go 1.11
RUN mkdir -p /goroot /gopath
RUN wget -q $GO_DOWNLOAD -O go.tar.gz
RUN tar xf go.tar.gz -C /goroot --strip-components=1
Expand Down

0 comments on commit 4b6cc83

Please sign in to comment.