Scaffold Cloudron packaging workspace and automation

This commit is contained in:
2025-10-02 12:07:09 -05:00
parent b4121cc932
commit 482d4ff1b8
414 changed files with 6837 additions and 2 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"]