gitea-image-forge/org/other/python/Dockerfile.template
Nadezhda Fedorova 17619fe844
All checks were successful
Full building alt images / build-process (push) Successful in 9m41s
Full building alt images / test-process (push) Successful in 4m16s
fix from-path in dockerfiles
2024-05-24 17:28:59 +03:00

19 lines
509 B
Docker

FROM {{ registry }}base/base:{{ branch }}
MAINTAINER alt-cloud
LABEL org.opencontainers.image.title="python"
LABEL org.opencontainers.image.description="Python 3 and tools needed for development"
LABEL org.opencontainers.image.source="https://github.com/python/cpython"
LABEL org.opencontainers.image.licenses="Python"
LABEL org.opencontainers.image.vendor="ALT Linux Team"
{{ install_packages(
"python3-module-pip",
"python3-module-setuptools",
"python3-dev",
"gcc",
) }}
CMD ["python3"]