From c80ad9aa0a753643e1a22e2cc3aeac3f3fd37b7c Mon Sep 17 00:00:00 2001 From: Poseidon <62171904+Poseidon281@users.noreply.github.com> Date: Thu, 4 Apr 2024 11:57:50 +0200 Subject: [PATCH] Update Dockerfile (#234) * Update Dockerfile There was a mistake made here. This is the 3.12 dockerfile but you are using python 3.7. This should fix that * also fix 3.7 --------- Co-authored-by: Quinten <67589015+QuintenQVD0@users.noreply.github.com> --- python/3.12/Dockerfile | 2 +- python/3.7/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/3.12/Dockerfile b/python/3.12/Dockerfile index 3d426b908..c695449d2 100644 --- a/python/3.12/Dockerfile +++ b/python/3.12/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$TARGETOS/$TARGETARCH python:3.7-slim-bookworm +FROM --platform=$TARGETOS/$TARGETARCH python:3.12-slim-bookworm LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" diff --git a/python/3.7/Dockerfile b/python/3.7/Dockerfile index 76c9dd879..3d426b908 100644 --- a/python/3.7/Dockerfile +++ b/python/3.7/Dockerfile @@ -1,4 +1,4 @@ -FROM --platform=$TARGETOS/$TARGETARCH python:3.7-slim +FROM --platform=$TARGETOS/$TARGETARCH python:3.7-slim-bookworm LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"