python3.13-nogil-jit
971

https://realpython.com/python313-free-threading-jit/#build-python-with-free-threading-and-jit-support
Python is a programming language that lets you work quickly and integrate systems more effectively.
Overview of Python Trademarks: This software listing is packaged by ikeszvpvb9ye. The respective trademarks mentioned in the offering are owned by the respective companies, and use of them does not imply any affiliation or endorsement.
docker run -it --name python3.13tj ikeszvpvb9ye/python3.13-nogil-jit:latest python3.13
FROM ikeszvpvb9ye/python3.13-nogil-jit:3.13tj
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip3.13 install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python3.13", "./your-script.py"] # Any py-script
CMD [ "python3.13", "manage.py runserver 127.0.0.1:80"]
# django flask example
Build and run
docker build -t my-python-app .
docker run -it --name my-running-app my-python-app
docker run -it --name my-running-app my-python-app \
-v /project/on/host:/usr/src/app \
-p 8080:80
And open your project on host machine https://localhost:8080
View license information for Python 3. This Image is modified from the official Ubuntu Image.
View Ubuntu license information
Content type
Image
Digest
sha256:13f63e889…
Size
806.9 MB
Last updated
almost 2 years ago
docker pull ikeszvpvb9ye/python3.13-nogil-jit