commit | 9feca4b7dea321031fd96630c21d90bcf125dc59 | [log] [tgz] |
---|---|---|
author | Mohammed Naser <mnaser@vexxhost.com> | Fri May 19 16:17:40 2023 -0400 |
committer | Mohammed Naser <mnaser@vexxhost.com> | Fri May 19 16:17:40 2023 -0400 |
tree | 43217886dc723e0caf4857f1035f31073aa92af3 | |
parent | 89db97f8e295b25db8f6b08b08069911cdedb1d5 [diff] |
add openssh client
diff --git a/Earthfile b/Earthfile index 8d57cc8..5daccbf 100644 --- a/Earthfile +++ b/Earthfile
@@ -49,7 +49,12 @@ COPY +build.collections/ /usr/share/ansible ENV ANSIBLE_PIPELINING=True ENV PATH=/venv/bin:$PATH - ENTRYPOINT ["bash"] + RUN \ + apt-get update && \ + apt-get install --no-install-recommends -y openssh-client && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + ENTRYPOINT ["/bin/bash"] ARG tag=latest SAVE IMAGE --push ghcr.io/vexxhost/atmosphere:${tag}