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
101 B
Docker
Raw Permalink Normal View History

FROM docker:26.0
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"]