Skip to content

Commit

Permalink
Update CA-Certificates in AWS_Codebuild
Browse files Browse the repository at this point in the history
Cherry picked changes to get pipeline running

Signed-off-by: pSchlarb <[email protected]>
  • Loading branch information
pSchlarb committed Oct 14, 2022
1 parent 1813b3d commit 0016e20
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 24 deletions.
2 changes: 2 additions & 0 deletions devops/aws-codebuild/buildspec.cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ phases:
- printenv
- export PROJECT_DIR="$PWD"
- |
apt-get update
apt-get install -y software-properties-common ca-certificates
set -ex
for goal in $MAKE_GOALS; do
echo "Making '$goal'"
Expand Down
2 changes: 2 additions & 0 deletions devops/aws-codebuild/buildspec.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ phases:
- printenv
- export PROJECT_DIR="$PWD"
- |
apt-get update
apt-get install -y software-properties-common ca-certificates
set -ex
for goal in $MAKE_GOALS; do
echo "Making '$goal'"
Expand Down
49 changes: 25 additions & 24 deletions devops/ext/docker/base/xenial/Dockerfile.0.8.0
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,37 @@ FROM ubuntu:xenial

# generally useful packages
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
apt-transport-https \
curl \
wget \
vim \
git \
procps \
autoconf \
automake \
g++ \
gcc \
make \
pkg-config \
zip \
unzip \
ca-certificates \
software-properties-common \
apt-transport-https \
curl \
wget \
vim \
git \
procps \
autoconf \
automake \
g++ \
gcc \
make \
pkg-config \
zip \
unzip \
&& rm -rf /var/lib/apt/lists/*


# install fpm
ENV FPM_VERSION=1.9.3
RUN apt-get update && apt-get install -y --no-install-recommends \
ruby \
ruby-dev \
rubygems \
build-essential \
autoconf \
libtool \
rpm \
RUN apt-add-repository ppa:brightbox/ruby-ng \
&& apt-get update && apt-get install -y --no-install-recommends \
ruby2.4 \
ruby2.4-dev \
build-essential \
autoconf \
libtool \
rpm \
&& gem install rake \
&& gem install --no-ri --no-rdoc fpm -v $FPM_VERSION \
&& gem install --no-document fpm -v $FPM_VERSION \
&& rm -rf /var/lib/apt/lists/*


Expand Down

0 comments on commit 0016e20

Please sign in to comment.