FROM docker:20.10.13@sha256:9e13118c8f7b17349e2d350806082fdda135ebf2923376821f3eac23559b9141 as runtime LABEL "repository"="https://github.com/elgohr/Publish-Docker-Github-Action" LABEL "maintainer"="Lars Gohr" ADD entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] FROM runtime as testEnv RUN apk add --no-cache coreutils bats ADD test.bats /test.bats ADD mock.sh /usr/local/mock/docker ADD mock.sh /usr/local/mock/date RUN /test.bats FROM runtime