-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
…ault in my egg in future
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ FROM --platform=$BUILDPLATFORM debian:bookworm-slim | |
LABEL author="Torsten Widmann" maintainer="[email protected]" | ||
LABEL org.opencontainers.image.source="https://github.com/gOOvER/own-pterodactyl-images" | ||
LABEL org.opencontainers.image.licenses=AGPL | ||
LABEL org.opencontainers.image.description Dockerimage for Pelican Hosting Panel and PterodactylLABEL org.opencontainers.image.description Dockerimage for Pelican Hosting Panel and Pterodactyl | ||
LABEL org.opencontainers.image.description Dockerimage for Pelican Hosting Panel and Pterodactyl | ||
Check warning on line 6 in depotdl/debian/Dockerfile GitHub Actions / depotdl:debianLegacy key/value format with whitespace separator should not be used
Check warning on line 6 in depotdl/debian/Dockerfile GitHub Actions / depotdl:debianLegacy key/value format with whitespace separator should not be used
|
||
|
||
|
||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
COPY sources.list /etc/apt/sources.list | ||
RUN dpkg --add-architecture i386 | ||
RUN apt update | ||
RUN apt -y upgrade | ||
|
@@ -96,8 +96,8 @@ RUN apt update -y \ | |
&& rm packages-microsoft-prod.deb \ | ||
&& apt update -y \ | ||
&& apt install -y \ | ||
aspnetcore-runtime-8.0 \ | ||
dotnet-sdk-8.0 | ||
aspnetcore-runtime-9.0 \ | ||
dotnet-sdk-9.0 | ||
|
||
RUN curl -sLOJ $(curl -s https://api.github.com/repos/SteamRE/DepotDownloader/releases/latest | grep browser_download_url | cut -d\" -f4 | egrep linux-x64.zip) | ||
RUN unzip DepotDownloader-linux-x64.zip -d /usr/local/bin/ | ||
|
@@ -112,8 +112,8 @@ RUN cd /tmp/ \ | |
# Set the locale | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
ENV LANGUAGE en_US:en | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 115 in depotdl/debian/Dockerfile GitHub Actions / depotdl:debianLegacy key/value format with whitespace separator should not be used
Check warning on line 115 in depotdl/debian/Dockerfile GitHub Actions / depotdl:debianLegacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 116 in depotdl/debian/Dockerfile GitHub Actions / depotdl:debianLegacy key/value format with whitespace separator should not be used
Check warning on line 116 in depotdl/debian/Dockerfile GitHub Actions / depotdl:debianLegacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 117 in depotdl/debian/Dockerfile GitHub Actions / depotdl:debianLegacy key/value format with whitespace separator should not be used
Check warning on line 117 in depotdl/debian/Dockerfile GitHub Actions / depotdl:debianLegacy key/value format with whitespace separator should not be used
|
||
|
||
## Prepare NSS Wrapper for the entrypoint as a workaround for Valheim requiring a valid UID | ||
|
@@ -135,4 +135,4 @@ STOPSIGNAL SIGINT | |
COPY --chown=container:container ../entrypoint.sh /entrypoint.sh | ||
RUN chmod +x /entrypoint.sh | ||
ENTRYPOINT ["/usr/bin/tini", "-g", "--"] | ||
CMD ["/entrypoint.sh"] | ||
CMD ["/entrypoint.sh"] |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,10 @@ FROM debian:bookworm-slim | |
|
||
LABEL author="Torsten Widmann" maintainer="[email protected]" | ||
LABEL org.opencontainers.image.source="https://github.com/gOOvER/own-pterodactyl-images" | ||
LABEL org.opencontainers.image.licenses=MIT | ||
LABEL org.opencontainers.image.licenses=AGPL | ||
|
||
## install required packages | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
COPY sources.list /etc/apt/sources.list | ||
RUN dpkg --add-architecture i386 | ||
RUN apt update | ||
RUN apt -y upgrade | ||
|
@@ -67,7 +66,7 @@ RUN apt install -y --no-install-recommends \ | |
libunwind8 \ | ||
libz-dev \ | ||
libzip4 | ||
|
||
RUN rm -rf /var/lib/apt/lists/* | ||
|
||
# Install wine and with recommends | ||
|
@@ -104,8 +103,8 @@ ENV DISPLAY_DEPTH=16 | |
# Set the locale | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
ENV LANGUAGE en_US:en | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 106 in depotdl/wine/Dockerfile GitHub Actions / depotdl:wineLegacy key/value format with whitespace separator should not be used
Check warning on line 106 in depotdl/wine/Dockerfile GitHub Actions / depotdl:wineLegacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 107 in depotdl/wine/Dockerfile GitHub Actions / depotdl:wineLegacy key/value format with whitespace separator should not be used
Check warning on line 107 in depotdl/wine/Dockerfile GitHub Actions / depotdl:wineLegacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 108 in depotdl/wine/Dockerfile GitHub Actions / depotdl:wineLegacy key/value format with whitespace separator should not be used
Check warning on line 108 in depotdl/wine/Dockerfile GitHub Actions / depotdl:wineLegacy key/value format with whitespace separator should not be used
|
||
|
||
## Setup user and working directory | ||
|
@@ -120,4 +119,4 @@ STOPSIGNAL SIGINT | |
COPY --chown=container:container ../entrypoint.sh /entrypoint.sh | ||
RUN chmod +x /entrypoint.sh | ||
ENTRYPOINT ["/usr/bin/tini", "-g", "--"] | ||
CMD ["/entrypoint.sh"] | ||
CMD ["/entrypoint.sh"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM debian:bookworm-slim | |
|
||
LABEL author="Torsten Widmann" maintainer="[email protected]" | ||
LABEL org.opencontainers.image.source="https://github.com/gOOvER/own-pterodactyl-images" | ||
LABEL org.opencontainers.image.licenses=MIT | ||
LABEL org.opencontainers.image.licenses=AGPL | ||
|
||
## install required packages | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
@@ -68,7 +68,7 @@ RUN apt install -y --no-install-recommends \ | |
libunwind8 \ | ||
libz-dev \ | ||
libzip4 | ||
|
||
RUN rm -rf /var/lib/apt/lists/* | ||
|
||
# Install wine and with recommends | ||
|
@@ -100,8 +100,8 @@ ENV DISPLAY_DEPTH=16 | |
# Set the locale | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
ENV LANGUAGE en_US:en | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 103 in wine/staging/Dockerfile GitHub Actions / wine:stagingLegacy key/value format with whitespace separator should not be used
Check warning on line 103 in wine/staging/Dockerfile GitHub Actions / wine:stagingLegacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 104 in wine/staging/Dockerfile GitHub Actions / wine:stagingLegacy key/value format with whitespace separator should not be used
Check warning on line 104 in wine/staging/Dockerfile GitHub Actions / wine:stagingLegacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 105 in wine/staging/Dockerfile GitHub Actions / wine:stagingLegacy key/value format with whitespace separator should not be used
Check warning on line 105 in wine/staging/Dockerfile GitHub Actions / wine:stagingLegacy key/value format with whitespace separator should not be used
|
||
|
||
RUN bash -c 'echo "vm.max_map_count = 16777216" > /etc/sysctl.d/20-max_map_count.conf' | ||
|