Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
6d652ce1
Unverified
Commit
6d652ce1
authored
Feb 26, 2019
by
Péter Szilágyi
Committed by
GitHub
Feb 26, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #19164 from karalabe/nuke-old-containers
containers/docker: nuke per the 1.8.0 deprecation note
parents
c2003ed6
f5f742d1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
62 deletions
+0
-62
Dockerfile
containers/docker/develop-alpine/Dockerfile
+0
-14
Dockerfile
containers/docker/develop-ubuntu/Dockerfile
+0
-17
Dockerfile
containers/docker/master-alpine/Dockerfile
+0
-14
Dockerfile
containers/docker/master-ubuntu/Dockerfile
+0
-17
No files found.
containers/docker/develop-alpine/Dockerfile
deleted
100644 → 0
View file @
c2003ed6
FROM
alpine:3.7
RUN
\
apk add
--update
go git make gcc musl-dev linux-headers ca-certificates
&&
\
git clone
--depth
1 https://github.com/ethereum/go-ethereum
&&
\
(
cd
go-ethereum
&&
make geth
)
&&
\
cp
go-ethereum/build/bin/geth /geth
&&
\
apk del go git make gcc musl-dev linux-headers
&&
\
rm
-rf
/go-ethereum
&&
rm
-rf
/var/cache/apk/
*
EXPOSE
8545
EXPOSE
30303
ENTRYPOINT
["/geth"]
containers/docker/develop-ubuntu/Dockerfile
deleted
100644 → 0
View file @
c2003ed6
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 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"]
containers/docker/master-alpine/Dockerfile
deleted
100644 → 0
View file @
c2003ed6
FROM
alpine:3.7
RUN
\
apk add
--update
go git make gcc musl-dev linux-headers 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
&&
\
apk del go git make gcc musl-dev linux-headers
&&
\
rm
-rf
/go-ethereum
&&
rm
-rf
/var/cache/apk/
*
EXPOSE
8545
EXPOSE
30303
ENTRYPOINT
["/geth"]
containers/docker/master-ubuntu/Dockerfile
deleted
100644 → 0
View file @
c2003ed6
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"]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment