-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9834618
commit 5ed906e
Showing
9 changed files
with
37 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,17 +5,17 @@ ARG VCS_REF | |
ARG VERSION | ||
|
||
LABEL org.label-schema.build-date=${BUILD_DATE} \ | ||
org.label-schema.name="python3.13" \ | ||
org.label-schema.description="A Python 3.13 image based on Debian bookworm" \ | ||
org.label-schema.name="python3.12" \ | ||
org.label-schema.description="A Python 3.12 image based on Debian bookworm" \ | ||
org.label-schema.url="https://github.com/Dockershelf/dockershelf" \ | ||
org.label-schema.vcs-ref=${VCS_REF} \ | ||
org.label-schema.vcs-url="https://github.com/Dockershelf/dockershelf" \ | ||
org.label-schema.vendor="Luis Alejandro Martínez Faneyth" \ | ||
org.label-schema.version=${VERSION} \ | ||
org.label-schema.schema-version="1.0.0-rc.1" \ | ||
org.opencontainers.image.created=${BUILD_DATE} \ | ||
org.opencontainers.image.title="python3.13" \ | ||
org.opencontainers.image.description="A Python 3.13 image based on Debian bookworm" \ | ||
org.opencontainers.image.title="python3.12" \ | ||
org.opencontainers.image.description="A Python 3.12 image based on Debian bookworm" \ | ||
org.opencontainers.image.url="https://github.com/Dockershelf/dockershelf" \ | ||
org.opencontainers.image.revision=${VCS_REF} \ | ||
org.opencontainers.image.source="https://github.com/Dockershelf/dockershelf" \ | ||
|
@@ -24,9 +24,9 @@ LABEL org.label-schema.build-date=${BUILD_DATE} \ | |
org.opencontainers.image.licenses="GPL-3.0" \ | ||
maintainer="Luis Alejandro Martínez Faneyth <[email protected]>" | ||
|
||
ENV PYTHON_VER_NUM="3.13" PYTHON_DEBIAN_SUITE="bookworm" \ | ||
ENV PYTHON_VER_NUM="3.12" PYTHON_DEBIAN_SUITE="bookworm" \ | ||
PYTHONIOENCODING="UTF-8" PIP_BREAK_SYSTEM_PACKAGES=1 \ | ||
PYTHONPATH="/usr/lib/python3.13/dist-packages:/usr/lib/python3.13/site-packages" | ||
PYTHONPATH="/usr/lib/python3.12/dist-packages:/usr/lib/python3.12/site-packages" | ||
|
||
COPY build-image.sh library.sh /usr/share/dockershelf/python/ | ||
RUN bash /usr/share/dockershelf/python/build-image.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,17 +5,17 @@ ARG VCS_REF | |
ARG VERSION | ||
|
||
LABEL org.label-schema.build-date=${BUILD_DATE} \ | ||
org.label-schema.name="python3.13" \ | ||
org.label-schema.description="A Python 3.13 image based on Debian sid" \ | ||
org.label-schema.name="python3.12" \ | ||
org.label-schema.description="A Python 3.12 image based on Debian sid" \ | ||
org.label-schema.url="https://github.com/Dockershelf/dockershelf" \ | ||
org.label-schema.vcs-ref=${VCS_REF} \ | ||
org.label-schema.vcs-url="https://github.com/Dockershelf/dockershelf" \ | ||
org.label-schema.vendor="Luis Alejandro Martínez Faneyth" \ | ||
org.label-schema.version=${VERSION} \ | ||
org.label-schema.schema-version="1.0.0-rc.1" \ | ||
org.opencontainers.image.created=${BUILD_DATE} \ | ||
org.opencontainers.image.title="python3.13" \ | ||
org.opencontainers.image.description="A Python 3.13 image based on Debian sid" \ | ||
org.opencontainers.image.title="python3.12" \ | ||
org.opencontainers.image.description="A Python 3.12 image based on Debian sid" \ | ||
org.opencontainers.image.url="https://github.com/Dockershelf/dockershelf" \ | ||
org.opencontainers.image.revision=${VCS_REF} \ | ||
org.opencontainers.image.source="https://github.com/Dockershelf/dockershelf" \ | ||
|
@@ -24,9 +24,9 @@ LABEL org.label-schema.build-date=${BUILD_DATE} \ | |
org.opencontainers.image.licenses="GPL-3.0" \ | ||
maintainer="Luis Alejandro Martínez Faneyth <[email protected]>" | ||
|
||
ENV PYTHON_VER_NUM="3.13" PYTHON_DEBIAN_SUITE="sid" \ | ||
ENV PYTHON_VER_NUM="3.12" PYTHON_DEBIAN_SUITE="sid" \ | ||
PYTHONIOENCODING="UTF-8" PIP_BREAK_SYSTEM_PACKAGES=1 \ | ||
PYTHONPATH="/usr/lib/python3.13/dist-packages:/usr/lib/python3.13/site-packages" | ||
PYTHONPATH="/usr/lib/python3.12/dist-packages:/usr/lib/python3.12/site-packages" | ||
|
||
COPY build-image.sh library.sh /usr/share/dockershelf/python/ | ||
RUN bash /usr/share/dockershelf/python/build-image.sh | ||
|
Oops, something went wrong.