mirror of
https://github.com/elgohr/Publish-Docker-Github-Action.git
synced 2026-03-15 09:21:00 -04:00
Bumps docker from 20.10.11 to 20.10.12. --- updated-dependencies: - dependency-name: docker dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
15 lines
459 B
Docker
15 lines
459 B
Docker
FROM docker:20.10.12@sha256:7576c1354d56ada47f1e52b9f5b9f472cb4bc85e299432b5508b5661228d3104 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
|