Files
container-builder/Containerfile
Nikolai Rodionov 4a600b1fa4
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Switch to rocky
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
2026-04-30 10:38:38 +02:00

36 lines
670 B
Docker

FROM rockylinux:10
RUN dnf -y update && \
dnf -y install \
epel-release \
dnf-plugins-core && \
dnf -y install \
yq \
gettext \
openssl \
curl \
jq \
perl \
git \
git-lfs \
netavark \
aardvark-dns \
buildah \
fuse-overlayfs \
iptables \
bash \
sed && \
dnf clean all
RUN curl -1sLf 'https://dl.cloudsmith.io/public/task/task/setup.rpm.sh' | bash && \
dnf -y install task && \
dnf clean all
RUN git clone https://github.com/asdf-vm/asdf.git /opt/asdf --branch v0.15.0
ENV ASDF_DIR=/opt/asdf
ENV PATH="/opt/asdf/bin:/opt/asdf/shims:${PATH}"
RUN echo '. /opt/asdf/asdf.sh' > /etc/profile.d/asdf.sh
COPY ./scripts/ /usr/bin/