Scaffold Cloudron packaging workspace and automation
This commit is contained in:
26
docker/ci-runner/Dockerfile
Normal file
26
docker/ci-runner/Dockerfile
Normal 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"]
|
Reference in New Issue
Block a user