runner-images/images/debian-12.6-slim/Dockerfile

32 lines
695 B
Text
Raw Permalink Normal View History

FROM debian:12.6-slim as skeleton
2024-07-29 03:40:55 +00:00
ENV DEBIAN_FRONTEND noninteractive
ENV TZ Etc/UTC
RUN apt update && \
apt upgrade -y && \
apt install -y \
curl \
unzip \
2024-07-29 03:40:55 +00:00
podman \
jq \
git \
xz-utils \
ca-certificates \
nodejs \
npm \
2024-07-29 03:40:55 +00:00
python3 \
python3-pip \
pipx \
fuse-overlayfs \
2024-07-29 03:40:55 +00:00
--no-install-recommends \
--autoremove && \
apt-get clean
COPY ./files/registries.conf /etc/containers/registries.conf
COPY ./files/storage.conf /etc/containers/storage.conf
2024-07-29 03:40:55 +00:00
FROM skeleton as runner
WORKDIR /runner