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
0b9070fe
Unverified
Commit
0b9070fe
authored
Jan 23, 2017
by
Péter Szilágyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
containers/docker: update ubuntu images to build, not pull
parent
c04598f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
24 deletions
+20
-24
Dockerfile
containers/docker/develop-ubuntu/Dockerfile
+10
-12
Dockerfile
containers/docker/master-ubuntu/Dockerfile
+10
-12
No files found.
containers/docker/develop-ubuntu/Dockerfile
View file @
0b9070fe
FROM
ubuntu:wily
MAINTAINER
caktux
FROM
ubuntu:xenial
ENV
DEBIAN_FRONTEND noninteractive
RUN
apt-get update
&&
\
apt-get upgrade
-q
-y
&&
\
apt-get dist-upgrade
-q
-y
&&
\
apt-key adv
--keyserver
keyserver.ubuntu.com
--recv-keys
923F6CA9
&&
\
echo
"deb http://ppa.launchpad.net/ethereum/ethereum-dev/ubuntu wily main"
|
tee
-a
/etc/apt/sources.list.d/ethereum.list
&&
\
apt-get update
&&
\
apt-get
install
-q
-y
geth
RUN
\
apt-get update
&&
apt-get upgrade
-q
-y
&&
\
apt-get
install
-y
--no-install-recommends
golang 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 git make gcc libc-dev
&&
apt autoremove
-y
&&
apt-get clean
&&
\
rm
-rf
/go-ethereum
EXPOSE
8545
EXPOSE
30303
ENTRYPOINT
["/
usr/bin/
geth"]
ENTRYPOINT
["/geth"]
containers/docker/master-ubuntu/Dockerfile
View file @
0b9070fe
FROM
ubuntu:wily
MAINTAINER
caktux
FROM
ubuntu:xenial
ENV
DEBIAN_FRONTEND noninteractive
RUN
apt-get update
&&
\
apt-get upgrade
-q
-y
&&
\
apt-get dist-upgrade
-q
-y
&&
\
apt-key adv
--keyserver
keyserver.ubuntu.com
--recv-keys
923F6CA9
&&
\
echo
"deb http://ppa.launchpad.net/ethereum/ethereum/ubuntu wily main"
|
tee
-a
/etc/apt/sources.list.d/ethereum.list
&&
\
apt-get update
&&
\
apt-get
install
-q
-y
geth
RUN
\
apt-get update
&&
apt-get upgrade
-q
-y
&&
\
apt-get
install
-y
--no-install-recommends
golang git make gcc libc-dev ca-certificates
&&
\
git clone
--depth
1
--branch
release/1.5 https://github.com/ethereum/go-ethereum
&&
\
(
cd
go-ethereum
&&
make geth
)
&&
\
cp
go-ethereum/build/bin/geth /geth
&&
\
apt-get remove
-y
golang git make gcc libc-dev
&&
apt autoremove
-y
&&
apt-get clean
&&
\
rm
-rf
/go-ethereum
EXPOSE
8545
EXPOSE
30303
ENTRYPOINT
["/
usr/bin/
geth"]
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