Restructure repository into output workspace

This commit is contained in:
2025-10-02 14:04:13 -05:00
parent fe0ade1dd9
commit 6e3f60cd9d
420 changed files with 256 additions and 220 deletions

View File

@@ -0,0 +1,26 @@
# CI harness image mirroring the Actions environment used by act_runner
FROM ghcr.io/catthehacker/ubuntu:act-22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install --yes --no-install-recommends \
ca-certificates \
curl \
git \
gnupg \
jq \
make \
python3 \
python3-pip \
python3-venv \
docker.io \
&& rm -rf /var/lib/apt/lists/*
# Configure git to trust any mounted workspace path inside the container
RUN git config --system --add safe.directory '*'
WORKDIR /workspace
ENTRYPOINT ["/bin/bash", "-lc"]
CMD ["sleep infinity"]