Skip to content

Commit

Permalink
deadsnakes
Browse files Browse the repository at this point in the history
  • Loading branch information
nemacysts committed Jul 9, 2024
1 parent 447f321 commit 0e2f1db
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
7 changes: 6 additions & 1 deletion yelp_package/dockerfiles/itest/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,14 @@ FROM ${DOCKER_REGISTRY}ubuntu:jammy
ARG PIP_INDEX_URL=https://pypi.yelpcorp.com/jammy/simple
ENV PIP_INDEX_URL=$PIP_INDEX_URL

RUN apt-get update -yq && \
apt-get install -yq \
# needed to add a ppa
software-properties-common && \
add-apt-repository ppa:deadsnakes/ppa

RUN apt-get update > /dev/null && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
software-properties-common \
gcc \
git \
curl \
Expand Down
6 changes: 6 additions & 0 deletions yelp_package/dockerfiles/itest/k8s/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ FROM ${DOCKER_REGISTRY}ubuntu:jammy
ARG PIP_INDEX_URL=https://pypi.yelpcorp.com/jammy/simple
ENV PIP_INDEX_URL=$PIP_INDEX_URL

RUN apt-get update -yq && \
apt-get install -yq \
# needed to add a ppa
software-properties-common && \
add-apt-repository ppa:deadsnakes/ppa

RUN apt-get update > /dev/null && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
gcc \
Expand Down

0 comments on commit 0e2f1db

Please sign in to comment.