Skip to content

Commit

Permalink
chore: Update skaffold base image (GoogleContainerTools#8460)
Browse files Browse the repository at this point in the history
* chore: Revert "chore: change skaffold base image (GoogleContainerTools#8433)"

This reverts commit 6b3f673.

* chore: update skaffold base image to ubuntu:20.04

* chore: add noninteractive

(cherry picked from commit 9847653)
  • Loading branch information
ericzzzzzzz authored and aaron-prindle committed Feb 28, 2023
1 parent 32ca369 commit db36747
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion deploy/skaffold/Dockerfile.deps
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ RUN \
sha256sum -c bazel.${ARCH}.sha256
RUN chmod +x bazel

FROM gcr.io/gcp-runtimes/ubuntu_20_0_4 as runtime_deps
FROM ubuntu:20.04 as runtime_deps

RUN apt-get update && \
apt-get install --no-install-recommends --no-install-suggests -y \
Expand Down Expand Up @@ -147,6 +147,7 @@ RUN gcloud auth configure-docker && \
gcloud components install gke-gcloud-auth-plugin

FROM runtime_deps
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install --no-install-recommends --no-install-suggests -y \
build-essential \
python-setuptools \
Expand Down
3 changes: 2 additions & 1 deletion deploy/skaffold/Dockerfile.deps.lts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ RUN \
RUN tar -zxf gcloud.tar.gz


FROM gcr.io/gcp-runtimes/ubuntu_20_0_4 as runtime_deps
FROM ubuntu:20.04 as runtime_deps

RUN apt-get update && \
apt-get install --no-install-recommends --no-install-suggests -y \
Expand All @@ -91,6 +91,7 @@ RUN gcloud auth configure-docker && \
gcloud components install gke-gcloud-auth-plugin

FROM runtime_deps
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install --no-install-recommends --no-install-suggests -y \
build-essential \
python-setuptools \
Expand Down
3 changes: 2 additions & 1 deletion deploy/skaffold/Dockerfile.deps.slim
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ RUN \
RUN tar -zxf gcloud.tar.gz


FROM gcr.io/gcp-runtimes/ubuntu_20_0_4 as runtime_deps
FROM ubuntu:20.04 as runtime_deps

RUN apt-get update && \
apt-get install --no-install-recommends --no-install-suggests -y \
Expand All @@ -91,6 +91,7 @@ RUN gcloud auth configure-docker && \
gcloud components install gke-gcloud-auth-plugin

FROM runtime_deps
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install --no-install-recommends --no-install-suggests -y \
build-essential \
python-setuptools \
Expand Down

0 comments on commit db36747

Please sign in to comment.