From 45261f16e83c2550ba1d103116db2b771be4a929 Mon Sep 17 00:00:00 2001 From: fithwum Date: Fri, 17 Nov 2023 07:04:16 -0800 Subject: [PATCH] updates --- bedrock/Dockerfile | 2 +- fabric/Dockerfile | 2 +- forge/Dockerfile | 2 +- testing/Dockerfile | 2 +- vanilla/Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bedrock/Dockerfile b/bedrock/Dockerfile index ba34c67..6c9de47 100644 --- a/bedrock/Dockerfile +++ b/bedrock/Dockerfile @@ -15,7 +15,7 @@ ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/minecraft/-/raw/master/be # Install java-17 & Dependencies. RUN apt-get -y update \ && apt-get -y --fix-broken install \ - && apt-get install -y ca-certificates wget nano software-properties-common screen bzip2 jq curl \ + && apt-get install -y --no-install-recommends ca-certificates wget nano software-properties-common screen bzip2 jq curl \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && update-ca-certificates -f; diff --git a/fabric/Dockerfile b/fabric/Dockerfile index 8f0dd64..122f232 100644 --- a/fabric/Dockerfile +++ b/fabric/Dockerfile @@ -17,7 +17,7 @@ ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/minecraft/-/raw/master/fa # Install java-17 & Dependencies. RUN apt-get -y update \ && apt-get -y --fix-broken install \ - && apt-get install -y ca-certificates wget nano software-properties-common screen openjdk-17-jdk bzip2 \ + && apt-get install -y --no-install-recommends ca-certificates wget nano software-properties-common screen openjdk-17-jdk bzip2 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && update-ca-certificates -f; diff --git a/forge/Dockerfile b/forge/Dockerfile index 9aab686..06dc2de 100644 --- a/forge/Dockerfile +++ b/forge/Dockerfile @@ -11,7 +11,7 @@ ARG INSTALL_SCRIPT=https://raw.githubusercontent.com/fithwum/minecraft/master/fo # Install java-17 & Dependencies. RUN apt-get -y update \ && apt-get -y --fix-broken install \ - && apt-get install -y ca-certificates wget nano software-properties-common openjdk-17-jdk bzip2 \ + && apt-get install -y --no-install-recommends ca-certificates wget nano software-properties-common openjdk-17-jdk bzip2 \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && update-ca-certificates -f; diff --git a/testing/Dockerfile b/testing/Dockerfile index 6167906..3bed918 100644 --- a/testing/Dockerfile +++ b/testing/Dockerfile @@ -15,7 +15,7 @@ ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/minecraft/-/raw/master/te # Install java-17 & Dependencies. RUN apt-get -y update \ && apt-get -y --fix-broken install \ - && apt-get install -y ca-certificates wget nano software-properties-common screen openjdk-17-jdk bzip2 jq curl \ + && apt-get install -y --no-install-recommends ca-certificates wget nano software-properties-common screen openjdk-17-jdk bzip2 jq curl \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && update-ca-certificates -f; diff --git a/vanilla/Dockerfile b/vanilla/Dockerfile index e34c213..43241d4 100644 --- a/vanilla/Dockerfile +++ b/vanilla/Dockerfile @@ -15,7 +15,7 @@ ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/minecraft/-/raw/master/va # Install java-17 & Dependencies. RUN apt-get -y update \ && apt-get -y --fix-broken install \ - && apt-get install -y ca-certificates wget nano software-properties-common screen openjdk-17-jdk bzip2 jq curl \ + && apt-get install -y --no-install-recommends ca-certificates wget nano software-properties-common screen openjdk-17-jdk bzip2 jq curl \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* \ && update-ca-certificates -f;