Skip to content

Commit

Permalink
fix apt-get install commands
Browse files Browse the repository at this point in the history
  • Loading branch information
sonroyaalmerol authored Jul 3, 2024
1 parent 4a8a412 commit 8ad3251
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bookworm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN set -x \
# Install, update & upgrade packages
&& apt-get update \
&& -y --no-install-recommends --no-install-suggests \
&& apt-get install -y --no-install-recommends --no-install-suggests \
git \
libglib2.0-dev \
libfdt-dev \
Expand Down
12 changes: 6 additions & 6 deletions bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN set -x \
# Install, update & upgrade packages
&& apt-get update \
&& -y --no-install-recommends --no-install-suggests \
&& apt-get install -y --no-install-recommends --no-install-suggests \
git \
libglib2.0-dev \
libfdt-dev \
Expand Down Expand Up @@ -62,7 +62,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN set -x \
&& apt-get update \
&& -y --no-install-recommends --no-install-suggests \
&& apt-get install -y --no-install-recommends --no-install-suggests \
git=1:2.30.2-1+deb11u2 \
ca-certificates=20210119 \
build-essential=12.9 \
Expand All @@ -85,7 +85,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN set -x \
&& apt-get update \
&& -y --no-install-recommends --no-install-suggests \
&& apt-get install -y --no-install-recommends --no-install-suggests \
git=1:2.30.2-1+deb11u2 \
ca-certificates=20210119 \
build-essential=12.9 \
Expand All @@ -108,7 +108,7 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]

RUN set -x \
&& apt-get update \
&& -y --no-install-recommends --no-install-suggests \
&& apt-get install -y --no-install-recommends --no-install-suggests \
git=1:2.30.2-1+deb11u2 \
ca-certificates=20210119 \
build-essential=12.9 \
Expand Down Expand Up @@ -151,7 +151,7 @@ RUN set -x \
&& dpkg --add-architecture armhf \
&& dpkg --add-architecture i386 \
&& apt-get update \
&& -y --no-install-recommends --no-install-suggests \
&& apt-get install -y --no-install-recommends --no-install-suggests \
libc6:i386=2.31-13+deb11u10 \
libstdc++6:i386=10.2.1-6 \
libc6:armhf=2.31-13+deb11u10 \
Expand All @@ -167,7 +167,7 @@ RUN set -x \
&& wget --progress=dot:giga https://ryanfortner.github.io/box86-debs/box86.list -O /etc/apt/sources.list.d/box86.list \
&& (wget -qO- https://ryanfortner.github.io/box86-debs/KEY.gpg | gpg --dearmor -o /etc/apt/trusted.gpg.d/box86-debs-archive-keyring.gpg) \
&& apt-get update \
&& -y --no-install-recommends --no-install-suggests \
&& apt-get install -y --no-install-recommends --no-install-suggests \
box64 \
box86-generic-arm \
&& sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen \
Expand Down

0 comments on commit 8ad3251

Please sign in to comment.