File Dockerfile of Package py3ops
#!BuildTag: py3ops FROM opensuse/tumbleweed LABEL maintainer="phoenix" LABEL description="Custom python3 devops toolbox container" # Define labels according to https://en.opensuse.org/Building_derived_containers LABEL org.opencontainers.image.title="python3 devops container" LABEL org.opencontainers.image.description="Devops python3 swiss army knife container" LABEL org.openbuildservice.disturl="%DISTURL%" LABEL org.opencontainers.image.created="%BUILDTIME%" ## Install required tools and clear cache RUN zypper in -y python3 python3-pip python3-poetry python3-black python3-yamllint python3-requests python3-beautifulsoup4 python3-pytest python3-pytest-cov python3-ruff python3-uv && zypper clean -a && rm -rf /var/cache/*