From 27ec9d4d53f2a1b32f61eba3a66404de87d7339c Mon Sep 17 00:00:00 2001 From: fithwum Date: Fri, 17 Nov 2023 07:13:59 -0800 Subject: [PATCH] updates --- basic/Dockerfile | 4 ++-- debian/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/basic/Dockerfile b/basic/Dockerfile index 9a1bded..494d584 100644 --- a/basic/Dockerfile +++ b/basic/Dockerfile @@ -5,8 +5,8 @@ LABEL maintainer "fithwum" ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/teamspeak-server/-/raw/main/basic/files/Install_Script.sh # Install dependencies and folder creation -RUN apt -y update && apt autoclean && apt -y autoremove \ - && apt install -y --no-install-recommends ca-certificates wget nano software-properties-common bzip2 curl jq \ +RUN apt-get -y update && apt-get autoclean && apt-get autoremove \ + && apt-get install -y --no-install-recommends ca-certificates wget nano software-properties-common bzip2 curl jq \ && rm -rf /var/lib/apt/lists/* \ && mkdir -p /ts3server /ts3temp /ts3temp/serverfiles \ && chmod 777 -R /ts3server /ts3temp \ diff --git a/debian/Dockerfile b/debian/Dockerfile index 828305b..baf60c7 100644 --- a/debian/Dockerfile +++ b/debian/Dockerfile @@ -5,8 +5,8 @@ LABEL maintainer "fithwum" ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/teamspeak-server/-/raw/main/debian/files/Install_Script.sh # Install dependencies and folder creation -RUN apt -y update && apt autoclean && apt -y autoremove \ - && apt install -y --no-install-recommends ca-certificates wget nano software-properties-common bzip2 curl jq \ +RUN apt-get -y update && apt-get autoclean && apt-get autoremove \ + && apt-get install -y --no-install-recommends ca-certificates wget nano software-properties-common bzip2 curl jq \ && rm -rf /var/lib/apt/lists/* \ && mkdir -p /ts3server /ts3temp /ts3temp/serverfiles \ && chmod 777 -R /ts3server /ts3temp \