aboutsummaryrefslogtreecommitdiffstats
path: root/containers/docker/master-ubuntu
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2019-02-25 18:40:33 +0800
committerPéter Szilágyi <peterke@gmail.com>2019-02-25 18:40:33 +0800
commitf5f742d1acab85c2287d694ea99aa92131f554d9 (patch)
treeb0e49ec75582678e71435057b7de477846d75375 /containers/docker/master-ubuntu
parent872370e3bc3c753937784e33e32d499ec277ab5f (diff)
downloadgo-tangerine-f5f742d1acab85c2287d694ea99aa92131f554d9.tar
go-tangerine-f5f742d1acab85c2287d694ea99aa92131f554d9.tar.gz
go-tangerine-f5f742d1acab85c2287d694ea99aa92131f554d9.tar.bz2
go-tangerine-f5f742d1acab85c2287d694ea99aa92131f554d9.tar.lz
go-tangerine-f5f742d1acab85c2287d694ea99aa92131f554d9.tar.xz
go-tangerine-f5f742d1acab85c2287d694ea99aa92131f554d9.tar.zst
go-tangerine-f5f742d1acab85c2287d694ea99aa92131f554d9.zip
containers/docker: nuke per the 1.8.0 deprecation note
Diffstat (limited to 'containers/docker/master-ubuntu')
-rw-r--r--containers/docker/master-ubuntu/Dockerfile17
1 files changed, 0 insertions, 17 deletions
diff --git a/containers/docker/master-ubuntu/Dockerfile b/containers/docker/master-ubuntu/Dockerfile
deleted file mode 100644
index 4cfc4f58c..000000000
--- a/containers/docker/master-ubuntu/Dockerfile
+++ /dev/null
@@ -1,17 +0,0 @@
-FROM ubuntu:xenial
-
-ENV PATH=/usr/lib/go-1.9/bin:$PATH
-
-RUN \
- apt-get update && apt-get upgrade -q -y && \
- apt-get install -y --no-install-recommends golang-1.9 git make gcc libc-dev ca-certificates && \
- git clone --depth 1 --branch release/1.8 https://github.com/ethereum/go-ethereum && \
- (cd go-ethereum && make geth) && \
- cp go-ethereum/build/bin/geth /geth && \
- apt-get remove -y golang-1.9 git make gcc libc-dev && apt autoremove -y && apt-get clean && \
- rm -rf /go-ethereum
-
-EXPOSE 8545
-EXPOSE 30303
-
-ENTRYPOINT ["/geth"]