Skip to content

Commit

Permalink
Use wget in CentOS Stream 10
Browse files Browse the repository at this point in the history
Add base Dockerfile

Signed-off-by: Petr "Stone" Hracek <[email protected]>
  • Loading branch information
phracek authored and github-actions[bot] committed Sep 24, 2024
1 parent e391d17 commit feab73d
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 1 deletion.
48 changes: 48 additions & 0 deletions base/Dockerfile.f41
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
FROM quay.io/fedora/s2i-core:41

ENV SUMMARY="Base image with essential libraries and tools used as a base for \
builder images like perl, python, ruby, etc." \
DESCRIPTION="The s2i-base image, being built upon s2i-core, provides any \
images layered on top of it with all the tools needed to use source-to-image \
functionality. Additionally, s2i-base also contains various libraries needed for \
it to serve as a base for other builder images, like s2i-python or s2i-ruby." \
NAME=s2i-base \
ARCH=x86_64

LABEL summary="$SUMMARY" \
description="$DESCRIPTION" \
io.k8s.description="$DESCRIPTION" \
io.k8s.display-name="s2i base" \
com.redhat.component="$NAME" \
name="fedora/$NAME" \
version="$VERSION" \
maintainer="SoftwareCollections.org <[email protected]>"

# This is the list of basic dependencies that all language container image can
# consume.
RUN INSTALL_PKGS="autoconf \
automake \
bzip2 \
gcc-c++ \
gd-devel \
gdb \
git \
libcurl-devel \
libpq-devel \
libxml2-devel \
libxslt-devel \
lsof \
make \
mariadb-connector-c-devel \
nodejs-npm \
openssl-devel \
patch \
procps-ng \
sqlite-devel \
unzip \
wget2 \
which \
zlib-ng-compat-devel" && \
dnf install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \
rpm -V $INSTALL_PKGS && \
dnf clean all -y
2 changes: 1 addition & 1 deletion base/Dockerfile.fedora

0 comments on commit feab73d

Please sign in to comment.