-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH python:2.7-slim | ||
FROM --platform=$TARGETOS/$TARGETARCH python:2.7-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
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 | ||
|
@@ -22,20 +23,20 @@ RUN apt -y install \ | |
locales \ | ||
procps | ||
|
||
RUN python -m pip install --upgrade pip | ||
RUN python -m pip install --upgrade pip | ||
|
||
# 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 LC_ALL en_US.UTF-8 | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 31 in dev/python/2.7/Dockerfile GitHub Actions / python:2.7Legacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 32 in dev/python/2.7/Dockerfile GitHub Actions / python:2.7Legacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 33 in dev/python/2.7/Dockerfile GitHub Actions / python:2.7Legacy key/value format with whitespace separator should not be used
|
||
|
||
## Setup user and working directory | ||
RUN useradd -m -d /home/container -s /bin/bash container | ||
USER container | ||
ENV USER=container HOME=/home/container | ||
WORKDIR /home/container | ||
|
||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] | ||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.10-slim | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.10-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
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 | ||
|
@@ -22,20 +23,20 @@ RUN apt -y install \ | |
locales \ | ||
procps | ||
|
||
RUN python -m pip install --upgrade pip | ||
RUN python -m pip install --upgrade pip | ||
|
||
# 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 LC_ALL en_US.UTF-8 | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 31 in dev/python/3.10/Dockerfile GitHub Actions / python:3.10Legacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 32 in dev/python/3.10/Dockerfile GitHub Actions / python:3.10Legacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 33 in dev/python/3.10/Dockerfile GitHub Actions / python:3.10Legacy key/value format with whitespace separator should not be used
|
||
|
||
## Setup user and working directory | ||
RUN useradd -m -d /home/container -s /bin/bash container | ||
USER container | ||
ENV USER=container HOME=/home/container | ||
WORKDIR /home/container | ||
|
||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] | ||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.11-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.11-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
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 | ||
|
@@ -24,20 +23,20 @@ RUN apt -y install \ | |
locales \ | ||
procps | ||
|
||
RUN python -m pip install --upgrade pip | ||
RUN python -m pip install --upgrade pip | ||
|
||
# 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 LC_ALL en_US.UTF-8 | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 31 in dev/python/3.11/Dockerfile GitHub Actions / python:3.11Legacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 32 in dev/python/3.11/Dockerfile GitHub Actions / python:3.11Legacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 33 in dev/python/3.11/Dockerfile GitHub Actions / python:3.11Legacy key/value format with whitespace separator should not be used
|
||
|
||
## Setup user and working directory | ||
RUN useradd -m -d /home/container -s /bin/bash container | ||
USER container | ||
ENV USER=container HOME=/home/container | ||
WORKDIR /home/container | ||
|
||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] | ||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.12-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
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 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt update \ | ||
&& apt -y upgrade | ||
|
||
RUN apt -y install \ | ||
ca-certificates \ | ||
curl \ | ||
default-libmysqlclient-dev \ | ||
dnsutils \ | ||
ffmpeg \ | ||
g++ \ | ||
gcc \ | ||
git \ | ||
iproute2 \ | ||
locales \ | ||
procps | ||
|
||
RUN python -m pip install --upgrade pip | ||
|
||
# Set the locale | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 31 in dev/python/3.12/Dockerfile GitHub Actions / python:3.12Legacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 32 in dev/python/3.12/Dockerfile GitHub Actions / python:3.12Legacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 33 in dev/python/3.12/Dockerfile GitHub Actions / python:3.12Legacy key/value format with whitespace separator should not be used
|
||
|
||
## Setup user and working directory | ||
RUN useradd -m -d /home/container -s /bin/bash container | ||
USER container | ||
ENV USER=container HOME=/home/container | ||
WORKDIR /home/container | ||
|
||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.13-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
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 | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt update \ | ||
&& apt -y upgrade | ||
|
||
RUN apt -y install \ | ||
ca-certificates \ | ||
curl \ | ||
default-libmysqlclient-dev \ | ||
dnsutils \ | ||
ffmpeg \ | ||
g++ \ | ||
gcc \ | ||
git \ | ||
iproute2 \ | ||
locales \ | ||
procps | ||
|
||
RUN python -m pip install --upgrade pip | ||
|
||
# Set the locale | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 31 in dev/python/3.13/Dockerfile GitHub Actions / python:3.13Legacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 32 in dev/python/3.13/Dockerfile GitHub Actions / python:3.13Legacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 33 in dev/python/3.13/Dockerfile GitHub Actions / python:3.13Legacy key/value format with whitespace separator should not be used
|
||
|
||
## Setup user and working directory | ||
RUN useradd -m -d /home/container -s /bin/bash container | ||
USER container | ||
ENV USER=container HOME=/home/container | ||
WORKDIR /home/container | ||
|
||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.7-slim | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.7-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
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 | ||
|
@@ -22,20 +23,20 @@ RUN apt -y install \ | |
locales \ | ||
procps | ||
|
||
RUN python -m pip install --upgrade pip | ||
RUN python -m pip install --upgrade pip | ||
|
||
# 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 LC_ALL en_US.UTF-8 | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 31 in dev/python/3.7/Dockerfile GitHub Actions / python:3.7Legacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 32 in dev/python/3.7/Dockerfile GitHub Actions / python:3.7Legacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 33 in dev/python/3.7/Dockerfile GitHub Actions / python:3.7Legacy key/value format with whitespace separator should not be used
|
||
|
||
## Setup user and working directory | ||
RUN useradd -m -d /home/container -s /bin/bash container | ||
USER container | ||
ENV USER=container HOME=/home/container | ||
WORKDIR /home/container | ||
|
||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] | ||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.8-slim | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.8-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
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 | ||
|
@@ -22,20 +23,20 @@ RUN apt -y install \ | |
locales \ | ||
procps | ||
|
||
RUN python -m pip install --upgrade pip | ||
RUN python -m pip install --upgrade pip | ||
|
||
# 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 LC_ALL en_US.UTF-8 | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 31 in dev/python/3.8/Dockerfile GitHub Actions / python:3.8Legacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 32 in dev/python/3.8/Dockerfile GitHub Actions / python:3.8Legacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 33 in dev/python/3.8/Dockerfile GitHub Actions / python:3.8Legacy key/value format with whitespace separator should not be used
|
||
|
||
## Setup user and working directory | ||
RUN useradd -m -d /home/container -s /bin/bash container | ||
USER container | ||
ENV USER=container HOME=/home/container | ||
WORKDIR /home/container | ||
|
||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] | ||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.9-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
FROM --platform=$TARGETOS/$TARGETARCH python:3.9-slim | ||
|
||
LABEL author="Michael Parker" maintainer="[email protected]" | ||
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 | ||
|
@@ -24,20 +23,20 @@ RUN apt -y install \ | |
locales \ | ||
procps | ||
|
||
RUN python -m pip install --upgrade pip | ||
RUN python -m pip install --upgrade pip | ||
|
||
# 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 LC_ALL en_US.UTF-8 | ||
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ | ||
locale-gen | ||
ENV LANG en_US.UTF-8 | ||
Check warning on line 31 in dev/python/3.9/Dockerfile GitHub Actions / python:3.9Legacy key/value format with whitespace separator should not be used
|
||
ENV LANGUAGE en_US:en | ||
Check warning on line 32 in dev/python/3.9/Dockerfile GitHub Actions / python:3.9Legacy key/value format with whitespace separator should not be used
|
||
ENV LC_ALL en_US.UTF-8 | ||
Check warning on line 33 in dev/python/3.9/Dockerfile GitHub Actions / python:3.9Legacy key/value format with whitespace separator should not be used
|
||
|
||
## Setup user and working directory | ||
RUN useradd -m -d /home/container -s /bin/bash container | ||
USER container | ||
ENV USER=container HOME=/home/container | ||
WORKDIR /home/container | ||
|
||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] | ||
COPY ./../entrypoint.sh /entrypoint.sh | ||
CMD ["/bin/bash", "/entrypoint.sh"] |