Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
af1c67d4
Commit
af1c67d4
authored
Mar 23, 2017
by
Brian Beggs
Committed by
GitHub
Mar 23, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3767 from edx/bbeggs/TE-2045
Configure ca-certificates for java in go-agents
parents
1e21be91
c5aba06d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletions
+11
-1
docker/build/go-agent/Dockerfile
+11
-1
No files found.
docker/build/go-agent/Dockerfile
View file @
af1c67d4
# Build using: docker build -f Dockerfile.gocd-agent -t gocd-agent .
FROM
gocd/gocd-agent:17.1.0
# https://hub.docker.com/r/gocd/gocd-agent-deprecated/
FROM
gocd/gocd-agent-deprecated:17.1.0
LABEL
version="0.02" \
description="This custom go-agent docker file installs additional requirements for the edx pipeline"
# starting with 16.04 apt-get-repository is not installed in the base image, lets install it so we are ready
# http://lifeonubuntu.com/ubuntu-missing-add-apt-repository-command/
RUN
apt-get update
&&
apt-get install
-y
-q
\
software-properties-common
\
python-software-properties
# Install a modern git client
RUN
add-apt-repository
-y
ppa:git-core/ppa
&&
\
apt-get update
&&
\
apt-get
-y
install git
# Configure ca-certificates for java
RUN
/var/lib/dpkg/info/ca-certificates-java.postinst configure
# Define working directory.
WORKDIR
/data
...
...
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