Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Factory
python-3.12-image
README.md
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File README.md of Package python-3.12-image
# Python 3.12 development container image ![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green) ## Description [Python](https://www.python.org/) is an interpreted, interactive, object-oriented, open-source programming language. It incorporates modules, exceptions, dynamic typing, high-level dynamic data types, and classes. It provides interfaces to many system calls, libraries, and various window systems, and it is extensible in C or C++. It is also usable as an extension language for applications that require programmable interfaces. ## Usage To deploy an application, install dependencies, copy the sources, and configure the application's main script: ```Dockerfile FROM registry.opensuse.org/opensuse/bci/python:3.12 WORKDIR /app COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt COPY . . CMD [ "python3", "./main-script.py" ] ``` Build and run the container image: ```ShellSession $ podman build -t my-python-app . $ podman run -it --rm my-python-app ``` To run a single script inside a container, use the following command: ```ShellSession $ podman run --rm -v "$PWD":/app:Z -w /app registry.opensuse.org/opensuse/bci/python:3.12 python3 script.py ``` ## Additional tools The Python container image includes [pip](https://pip.pypa.io/), [pipx](https://pipx.pypa.io/), [wheel](https://wheel.readthedocs.io/), Python Development Headers, and Git. ## Licensing `SPDX-License-Identifier: MIT` This documentation and the build recipe are licensed as MIT. The container itself contains various software components under various open source licenses listed in the associated Software Bill of Materials (SBOM). This image is based on [openSUSE Tumbleweed](https://get.opensuse.org/tumbleweed/).
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor