Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add sshpass in the apk packages #13

Merged
merged 2 commits into from
Jun 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ All user visible changes to this project will be documented in this file. This p



## [alpine3.16-r1] · 2022-06-09
[alpine3.16-r1]: /../../tree/alpine3.16-r1

[Diff](/../../compare/alpine3.16-r0...alpine3.16-r1)

### Added

- [`sshpass`] utility. ([#13])

[#13]: /../../pull/13
[`sshpass`]: https://sourceforge.net/projects/sshpass




## [alpine3.16-r0] · 2022-05-24
[alpine3.16-r0]: /../../tree/alpine3.16-r0

Expand Down
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ARG alpine_ver=3.16
FROM alpine:${alpine_ver}

ARG build_rev=0
ARG build_rev=1

LABEL org.opencontainers.image.source="\
https://github.com/instrumentisto/rsync-ssh-docker-image"
Expand All @@ -14,6 +14,7 @@ RUN apk update \
&& apk add --no-cache \
rsync \
openssh-client-default \
sshpass \
ca-certificates \
&& update-ca-certificates \
&& rm -rf /var/cache/apk/*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Rsync + SSH Docker image

## Supported tags and respective `Dockerfile` links

- [`alpine3.16-r0`, `alpine3.16`, `alpine`, `latest`][d1]
- [`alpine3.16-r1`, `alpine3.16`, `alpine`, `latest`][d1]



Expand Down