dont get fancy just run bash and git clone
Some checks failed
cicd / cicd (push) Failing after 5s
cicd / pull (push) Successful in 5s

This commit is contained in:
bel
2023-10-28 09:12:56 -06:00
parent e48614f8b5
commit fe6748a0ae
3 changed files with 11 additions and 9 deletions

View File

@@ -2,8 +2,6 @@ FROM docker:24.0.7-dind-alpine3.18
RUN apk update && apk --no-cache add bash curl git
RUN mv $(which sh) /bin/sh.sh; mv $(which bash /bin/bash.sh)
COPY ./entrypoint.sh /bin/sh
COPY ./entrypoint.sh /bin/bash
RUN chmod +x /bin/sh /bin/bash
COPY ./entrypoint.sh /bin/entrypoint.sh
RUN chmod +x /bin/entrypoint.sh
ENTRYPOINT ["/bin/entrypoint.sh"]