-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "fix(dockerfiles/bases): shrink base image size" (#432)
Reverts #431
- Loading branch information
Showing
14 changed files
with
20 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
ARG PINGCAP_BASE | ||
FROM $PINGCAP_BASE | ||
RUN dnf install perl-interpreter -y \ | ||
&& dnf clean all \ | ||
&& rm -rf /var/cache/yum | ||
RUN dnf install perl-interpreter -y && \ | ||
dnf clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
ARG PINGCAP_BASE | ||
FROM $PINGCAP_BASE | ||
RUN dnf install bind-utils wget jq perl-interpreter -y \ | ||
&& dnf clean all \ | ||
&& rm -rf /var/cache/yum | ||
RUN dnf install bind-utils wget jq perl-interpreter -y && \ | ||
dnf clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
FROM quay.io/rockylinux/rockylinux:9.4.20240523 | ||
COPY --from=busybox:1.36.1 /bin/busybox /bin/busybox | ||
RUN _date=20240920 dnf upgrade -y && dnf clean all && rm -rf /var/cache/yum | ||
RUN _date=20240730 dnf upgrade -y && dnf clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
ARG PINGCAP_BASE | ||
FROM $PINGCAP_BASE | ||
RUN dnf install --allowerasing -y curl wget \ | ||
&& dnf clean all \ | ||
&& rm -rf /var/cache/yum | ||
RUN dnf install --allowerasing -y curl wget && dnf clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
ARG PINGCAP_BASE | ||
FROM $PINGCAP_BASE | ||
RUN dnf install --allowerasing -y wget \ | ||
&& dnf clean all \ | ||
&& rm -rf /var/cache/yum | ||
RUN dnf install --allowerasing -y wget && dnf clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
ARG PINGCAP_BASE | ||
FROM $PINGCAP_BASE | ||
# wget is requested by operator | ||
RUN dnf install -y tzdata wget \ | ||
&& dnf clean all \ | ||
&& rm -rf /var/cache/yum | ||
RUN dnf install -y tzdata wget && dnf clean all | ||
ENV TZ=/etc/localtime \ | ||
TZDIR=/usr/share/zoneinfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
ARG PINGCAP_BASE=ghcr.io/pingcap-qe/bases/pingcap-base:v1.9.1 | ||
FROM $PINGCAP_BASE | ||
# wget is requested by operator | ||
RUN dnf install -y tzdata wget openssl \ | ||
&& dnf clean all \ | ||
&& rm -rf /var/cache/yum | ||
RUN dnf install -y tzdata wget openssl && dnf clean all | ||
ENV TZ=/etc/localtime \ | ||
TZDIR=/usr/share/zoneinfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
ARG PINGCAP_BASE | ||
FROM $PINGCAP_BASE | ||
RUN dnf install -y bind-utils wget nc \ | ||
&& dnf clean all \ | ||
&& rm -rf /var/cache/yum | ||
RUN dnf install -y bind-utils wget nc && dnf clean all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters