Skip to content

Commit c260d71

Browse files
authored
Merge pull request #4 from Intellection/builder-phase5o-ssh-agent
[SRE-5664] Phase 5o: Add SSH agent support to builder image
2 parents 48bbeed + 3ba8c87 commit c260d71

3 files changed

Lines changed: 9 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.2.0
4+
5+
* Install OpenSSH client tools to support SSH agent forwarding workflows.
6+
37
## 1.1.0
48

59
* Install `git` and `git-lfs`.

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ RUN apt-get update -y && \
1010
ca-certificates \
1111
curl \
1212
git \
13-
git-lfs && \
13+
git-lfs \
14+
openssh-client && \
1415
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
1516

1617
# Docker

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@ Published to Docker Hub as [`zappi/image-builder`](https://hub.docker.com/r/zapp
1111
| Base image | Ubuntu 24.04 LTS |
1212
| [Git](https://git-scm.com/) | distro package |
1313
| [Git LFS](https://git-lfs.com/) | distro package |
14+
| [OpenSSH client](https://www.openssh.com/) | distro package |
1415
| [Docker CLI](https://github.com/docker/cli) | 29.3.0 |
1516
| [Docker Buildx plugin](https://github.com/docker/buildx) | 0.31.1 |
1617
| [Amazon ECR Credential Helper](https://github.com/awslabs/amazon-ecr-credential-helper) | 0.12.0 |
1718

18-
`git` and `git-lfs` are included as part of the builder toolchain.
19+
`git`, `git-lfs` and OpenSSH client tools are included as part of the
20+
builder toolchain.
1921

2022
The image runs as a non-root `builder` user (UID/GID `65533`).
2123

0 commit comments

Comments
 (0)