Skip to content

Commit 3223edf

Browse files
authored
Merge pull request #128 from linuxserver/recommended
add back recommended deps
2 parents ad7b7bf + 3be76d8 commit 3223edf

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENV HOME="/config"
1414
RUN \
1515
echo "**** install runtime dependencies ****" && \
1616
apt-get update && \
17-
apt-get install -y --no-install-recommends \
17+
apt-get install -y \
1818
git \
1919
jq \
2020
libatomic1 \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENV HOME="/config"
1414
RUN \
1515
echo "**** install runtime dependencies ****" && \
1616
apt-get update && \
17-
apt-get install -y --no-install-recommends \
17+
apt-get install -y \
1818
git \
1919
jq \
2020
libatomic1 \

Dockerfile.armhf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENV HOME="/config"
1414
RUN \
1515
echo "**** install runtime dependencies ****" && \
1616
apt-get update && \
17-
apt-get install -y --no-install-recommends \
17+
apt-get install -y \
1818
git \
1919
jq \
2020
libatomic1 \

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
256256

257257
## Versions
258258

259+
* **05.10.22:** - Install recommended deps to maintain parity with the older images.
259260
* **29.09.22:** - Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents.
260261
* **20.02.22:** - Install using the official tarballs.
261262
* **29.12.21:** - Add `install-extension` as a helper for mods to install extensions.

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ app_setup_block: |
7575
7676
# changelog
7777
changelogs:
78+
- { date: "05.10.22:", desc: "Install recommended deps to maintain parity with the older images." }
7879
- { date: "29.09.22:", desc: "Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents." }
7980
- { date: "20.02.22:", desc: "Install using the official tarballs." }
8081
- { date: "29.12.21:", desc: "Add `install-extension` as a helper for mods to install extensions." }

0 commit comments

Comments
 (0)