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

29 lines
591 B
Text
Raw 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 \
podman \
jq \
git \
xz-utils \
ca-certificates \
nodejs \
npm \
2024-07-29 03:40:55 +00:00
python3 \
python3-pip \
pipx \
--no-install-recommends \
--autoremove && \
apt-get clean
COPY ./files/registries.conf /etc/containers/registries.conf
FROM skeleton as runner
WORKDIR /runner