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
6882943e
Commit
6882943e
authored
Jan 02, 2018
by
Deepak Sharma
Committed by
Felix Lange
Jan 02, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
containers/docker: change docker images to go1.9 (#15789)
parent
b98aa3b4
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
6 deletions
+10
-6
Dockerfile
containers/docker/develop-alpine/Dockerfile
+1
-1
Dockerfile
containers/docker/develop-ubuntu/Dockerfile
+4
-2
Dockerfile
containers/docker/master-alpine/Dockerfile
+1
-1
Dockerfile
containers/docker/master-ubuntu/Dockerfile
+4
-2
No files found.
containers/docker/develop-alpine/Dockerfile
View file @
6882943e
FROM
alpine:3.
5
FROM
alpine:3.
7
RUN
\
apk add
--update
go git make gcc musl-dev linux-headers ca-certificates
&&
\
...
...
containers/docker/develop-ubuntu/Dockerfile
View file @
6882943e
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 git make gcc libc-dev ca-certificates
&&
\
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 git make gcc libc-dev
&&
apt autoremove
-y
&&
apt-get clean
&&
\
apt-get remove
-y
golang
-1.9
git make gcc libc-dev
&&
apt autoremove
-y
&&
apt-get clean
&&
\
rm
-rf
/go-ethereum
EXPOSE
8545
...
...
containers/docker/master-alpine/Dockerfile
View file @
6882943e
FROM
alpine:3.
5
FROM
alpine:3.
7
RUN
\
apk add
--update
go git make gcc musl-dev linux-headers ca-certificates
&&
\
...
...
containers/docker/master-ubuntu/Dockerfile
View file @
6882943e
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 git make gcc libc-dev ca-certificates
&&
\
apt-get
install
-y
--no-install-recommends
golang
-1.9
git make gcc libc-dev ca-certificates
&&
\
git clone
--depth
1
--branch
release/1.7 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
&&
\
apt-get remove
-y
golang
-1.9
git make gcc libc-dev
&&
apt autoremove
-y
&&
apt-get clean
&&
\
rm
-rf
/go-ethereum
EXPOSE
8545
...
...
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