runner-images/images/debian-12.6-slim/Dockerfile
Marc Cataford 3cce76e206
Some checks are pending
/ pre-run (push) Waiting to run
/ build-images (debian-12.6-slim) (push) Blocked by required conditions
/ post-run (push) Blocked by required conditions
feat(runner-latest): add unzip to system dependencies
2024-11-06 19:29:43 -05:00

29 lines
611 B
Docker

FROM debian:12.6-slim as skeleton
ENV DEBIAN_FRONTEND noninteractive
ENV TZ Etc/UTC
RUN apt update && \
apt upgrade -y && \
apt install -y \
curl \
unzip \
podman \
jq \
git \
xz-utils \
ca-certificates \
nodejs \
npm \
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