From 9631a89acefe63d61360c7a50d155bb9d8544430 Mon Sep 17 00:00:00 2001 From: Fi5t Date: Tue, 2 Jun 2026 22:37:53 +0300 Subject: [PATCH] Pin Python version `FROM python` pulled the last Python (3.14 for now), which removed `ast.Str` (gone since 3.12). The `filebytes` dependency uses `ast.Str` in its build system, so it crashes on 3.12+. Pinning to `python:3.11` resolves this. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 74b7ed9..9285261 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Once built, simply execute "docker container run -v /:/app/mnt -it " to run the container and expose your host filesystem # Or you can execute it non-interactively / directly on a file with "docker container run -v /:/app/mnt -it -f /app/mnt/bin/bash" -FROM python +FROM python:3.11 LABEL MAINTAINER="oddrabbit"