changed ssh client ubuntu to alpine
All checks were successful
/ ssh-client (push) Successful in 10s

This commit is contained in:
2025-11-23 01:49:35 +00:00
parent 95ee33f3e8
commit da190f7d76

View File

@@ -1,4 +1,7 @@
FROM ubuntu:latest FROM alpine:latest
RUN apt-get update && apt-get upgrade -y # Install SSH client and bash
RUN apt-get install -y openssh-client --fix-missing RUN apk add --no-cache openssh-client bash
# Default command
CMD ["/bin/bash"]