Skip to content

Commit

Permalink
add python 39 installer image
Browse files Browse the repository at this point in the history
  • Loading branch information
gOOvER committed Dec 30, 2023
1 parent 9bb0b6e commit daf423b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- depotdownloader
- nodejs
- python
- python39
- ubuntu

steps:
Expand Down
33 changes: 33 additions & 0 deletions installers/python39/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
FROM --platform=$BUILDPLATFORM python:3.9-slim-bookworm

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

## update base packages
ARG DEBIAN_FRONTEND noninteractive
RUN dpkg --add-architecture i386
RUN apt update \
&& apt -y upgrade

RUN apt install -y --no-install-recommends \
build-essential \
ca-certificates \
curl \
git \
git-lfs \
jq \
locales \
python3 \
python3-dev \
python3-pip \
tar \
unzip \
wget \
lib32gcc-s1 \
libcurl4 \
libcurl4:i386 \
libcurl4-gnutls-dev \
libcurl4-gnutls-dev:i386 \
libsdl2-2.0-0 \
libsdl2-2.0-0:i386

0 comments on commit daf423b

Please sign in to comment.