Files
dind/Dockerfile
bel fe6748a0ae
Some checks failed
cicd / cicd (push) Failing after 5s
cicd / pull (push) Successful in 5s
dont get fancy just run bash and git clone
2023-10-28 09:12:56 -06:00

8 lines
194 B
Docker

FROM docker:24.0.7-dind-alpine3.18
RUN apk update && apk --no-cache add bash curl git
COPY ./entrypoint.sh /bin/entrypoint.sh
RUN chmod +x /bin/entrypoint.sh
ENTRYPOINT ["/bin/entrypoint.sh"]