lubitest/actions/sleep/Dockerfile

12 lines
164 B
Text
Raw Normal View History

2024-12-13 12:55:42 +01:00
FROM alpine:latest
2024-12-13 13:07:55 +01:00
RUN apk add --no-cache \
openssh \
rsync
2024-12-13 12:55:42 +01:00
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]