All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
36 lines
670 B
Docker
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/
|