All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Signed-off-by: Nikolai Rodionov <iam@allanger.xyz>
34 lines
636 B
Docker
34 lines
636 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 \
|
|
xz \
|
|
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 curl -Lo asdf.tar.gz https://github.com/asdf-vm/asdf/releases/download/v0.19.0/asdf-v0.19.0-linux-amd64.tar.gz && \
|
|
tar -xzf asdf.tar.gz && \
|
|
mv asdf /usr/local/bin/
|
|
|
|
COPY ./scripts/ /usr/bin/
|