initial commit

This commit is contained in:
Sebastian Hugentobler 2023-12-31 16:16:35 +01:00
commit fcca67b1fb
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
3 changed files with 35 additions and 0 deletions

9
Containerfile Normal file
View file

@ -0,0 +1,9 @@
FROM docker.io/alpine:3.19
RUN apk --no-cache add \
lftp \
openssh-client
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]