This repository has been archived on 2024-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
docker-run-action/Dockerfile

8 lines
102 B
Docker
Raw Normal View History

2021-03-16 15:40:17 +01:00
FROM docker:20.10
2020-06-18 00:47:31 +02:00
2020-06-18 01:03:19 +02:00
RUN apk add bash
2020-06-18 01:01:18 +02:00
2020-06-18 00:47:31 +02:00
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]