Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
699bab2e
Commit
699bab2e
authored
Jun 27, 2019
by
Tomo Suzuki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverted 64-bit/Dockerfile
parent
30673ff2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
2 deletions
+35
-2
Dockerfile
kokoro/linux/64-bit/Dockerfile
+0
-2
Dockerfile
kokoro/linux/dockerfile/test/java/Dockerfile
+35
-0
No files found.
kokoro/linux/64-bit/Dockerfile
View file @
699bab2e
...
...
@@ -66,8 +66,6 @@ RUN apt-get clean && apt-get update && apt-get install -y --force-yes \
openjdk-7-jdk \
# -- For java_oracle7 -- \
oracle-java7-installer \
# -- For java_linkage_monitor \
openjdk-8-jdk \
# -- For python / python_cpp -- \
python-setuptools \
python-pip \
...
...
kokoro/linux/dockerfile/test/java/Dockerfile
0 → 100644
View file @
699bab2e
FROM
debian:stretch
# Install dependencies. We start with the basic ones require to build protoc
# and the C++ build
RUN
apt-get update
&&
apt-get
install
-y
\
autoconf
\
autotools-dev
\
build-essential
\
bzip2
\
ccache
\
curl
\
gcc
\
git
\
libc6
\
libc6-dbg
\
libc6-dev
\
libgtest-dev
\
libtool
\
make
\
parallel
\
time
\
wget
\
&&
apt-get clean
# Java dependencies
RUN
apt-get
install
-y
\
# -- For all Java builds --
\
maven
\
# -- For java_jdk7 --
\
#openjdk-7-jdk
\
# -- For java_oracle7 --
\
#oracle-java7-installer
\
# -- For java_linkage_monitor
\
openjdk-8-jdk
\
&&
apt-get clean
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