Initial commit
ContainerImages/dch-debug/pipeline/head This commit looks good Details

main
Dustin 2024-06-18 21:36:21 -05:00
commit 55559bbdef
2 changed files with 25 additions and 0 deletions

24
Containerfile Normal file
View File

@ -0,0 +1,24 @@
FROM registry.fedoraproject.org/fedora:40
RUN --mount=type=cache,target=/var/cache \
dnf install -y \
--setopt=install_weak_deps=0 \
less \
openssh-clients \
rsync \
iproute \
iputils \
procps-ng \
&& groupadd -g 1000 fedora \
&& useradd -u 1000 -g 1000 -m fedora \
&& :
COPY --from=registry.k8s.io/pause /pause /usr/local/bin
USER 1000:1000
VOLUME /home/fedora
WORKDIR /home/fedora
CMD ["pause"]

1
Jenkinsfile vendored Normal file
View File

@ -0,0 +1 @@
buildContainerImage2(archlist: ['amd64', 'arm64'])