Skip to content

Commit

Permalink
Merge pull request #194 from Loki-101/add-python12
Browse files Browse the repository at this point in the history
Add python3.12
  • Loading branch information
QuintenQVD0 committed Oct 13, 2023
2 parents 33e2794 + 3fff304 commit 8b98e08
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v3
# Setup QEMU for ARM64 Build
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,8 @@ is tagged correctly.
* `ghcr.io/parkervcp/yolks:python_3.10`
* [`python3.11`](/python/3.11)
* `ghcr.io/parkervcp/yolks:python_3.11`
* [`python3.12`](/python/3.12)
* `ghcr.io/parkervcp/yolks:python_3.12`

### [Redis](/redis)

Expand Down
14 changes: 14 additions & 0 deletions python/3.12/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM --platform=$TARGETOS/$TARGETARCH python:3.12-slim

LABEL author="Michael Parker" maintainer="[email protected]"

RUN apt update \
&& apt -y install git gcc g++ ca-certificates dnsutils curl iproute2 ffmpeg procps \
&& useradd -m -d /home/container container

USER container
ENV USER=container HOME=/home/container
WORKDIR /home/container

COPY ./../entrypoint.sh /entrypoint.sh
CMD [ "/bin/bash", "/entrypoint.sh" ]

0 comments on commit 8b98e08

Please sign in to comment.