Files
dind/Dockerfile
bel 80d07b2cba
Some checks failed
cicd / pull (push) Successful in 5s
cicd / cicd (push) Failing after 3s
no cmd
2023-10-28 09:20:58 -06:00

9 lines
201 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"]
CMD []