lubitest/actions/sleep/Dockerfile

12 lines
173 B
Text
Raw Normal View History

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