Commit 9cdda28d42
Verified · cmc ci/build: success ci/test: success ci/vuln: success
deploy/Containerfile.ci +3 −1
| @@ -16,7 +16,8 @@ FROM docker.io/library/golang:1.27-trixie | ||
| 16 | 16 | # sshd must be the binary at /usr/sbin/sshd that the tests exec. |
| 17 | 17 | # python3-venv: this is also the default image for every repository the |
| 18 | 18 | # bay1 runner is attached to, and a lint job that makes a venv for ruff |
| 19 | # fails without ensurepip (gitbay-ci:2). | |
| 19 | # fails without ensurepip (gitbay-ci:2). sqlite3: the same reason, for | |
| 20 | # a job that maintains an archive database. | |
| 20 | 21 | RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ |
| 21 | 22 | git-lfs \ |
| 22 | 23 | gnupg \ |
| @@ -27,6 +28,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins | ||
| 27 | 28 | unzip \ |
| 28 | 29 | python3 \ |
| 29 | 30 | python3-venv \ |
| 31 | sqlite3 \ | |
| 30 | 32 | && rm -rf /var/lib/apt/lists/* |
| 31 | 33 | |
| 32 | 34 | # A build runs as this image's root inside its own user namespace, mapped |