Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for building s2i-core and s2i-base from Fedora 39 #278

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base/Dockerfile.fedora
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This image is the base image for all OpenShift v3 language container images.
FROM quay.io/fedora/s2i-core:38
FROM quay.io/fedora/s2i-core:39

ENV SUMMARY="Base image with essential libraries and tools used as a base for \
builder images like perl, python, ruby, etc." \
Expand Down
4 changes: 2 additions & 2 deletions core/Dockerfile.fedora
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# This image is the base image for all s2i configurable container images.
FROM quay.io/fedora/fedora:38
FROM quay.io/fedora/fedora:39

ENV SUMMARY="Base image which allows using of source-to-image." \
DESCRIPTION="The s2i-core image provides any images layered on top of it \
with all the tools needed to use source-to-image functionality while keeping \
the image size as small as possible." \
NAME=s2i-core \
VERSION=38 \
VERSION=39 \
ARCH=x86_64

LABEL summary="$SUMMARY" \
Expand Down