This commit is contained in:
2023-11-17 07:13:59 -08:00
parent b6004b1fe1
commit 27ec9d4d53
2 changed files with 4 additions and 4 deletions

View File

@@ -5,8 +5,8 @@ LABEL maintainer "fithwum"
ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/teamspeak-server/-/raw/main/basic/files/Install_Script.sh ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/teamspeak-server/-/raw/main/basic/files/Install_Script.sh
# Install dependencies and folder creation # Install dependencies and folder creation
RUN apt -y update && apt autoclean && apt -y autoremove \ RUN apt-get -y update && apt-get autoclean && apt-get autoremove \
&& apt install -y --no-install-recommends ca-certificates wget nano software-properties-common bzip2 curl jq \ && apt-get install -y --no-install-recommends ca-certificates wget nano software-properties-common bzip2 curl jq \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \
&& mkdir -p /ts3server /ts3temp /ts3temp/serverfiles \ && mkdir -p /ts3server /ts3temp /ts3temp/serverfiles \
&& chmod 777 -R /ts3server /ts3temp \ && chmod 777 -R /ts3server /ts3temp \

4
debian/Dockerfile vendored
View File

@@ -5,8 +5,8 @@ LABEL maintainer "fithwum"
ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/teamspeak-server/-/raw/main/debian/files/Install_Script.sh ARG INSTALL_SCRIPT=https://gitlab.fithwum.tech/fithwum/teamspeak-server/-/raw/main/debian/files/Install_Script.sh
# Install dependencies and folder creation # Install dependencies and folder creation
RUN apt -y update && apt autoclean && apt -y autoremove \ RUN apt-get -y update && apt-get autoclean && apt-get autoremove \
&& apt install -y --no-install-recommends ca-certificates wget nano software-properties-common bzip2 curl jq \ && apt-get install -y --no-install-recommends ca-certificates wget nano software-properties-common bzip2 curl jq \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \
&& mkdir -p /ts3server /ts3temp /ts3temp/serverfiles \ && mkdir -p /ts3server /ts3temp /ts3temp/serverfiles \
&& chmod 777 -R /ts3server /ts3temp \ && chmod 777 -R /ts3server /ts3temp \