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
2021-03-16 10:40:17 -04:00

7 lines
102 B
Docker

FROM docker:20.10
RUN apk add bash
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]