fix: cleanup filesystem between runs

This commit is contained in:
ThetaDev
2024-03-03 01:15:29 +01:00
parent 2dd5475afb
commit ddf6ce124e
2 changed files with 12 additions and 12 deletions

View File

@@ -22,11 +22,11 @@ RUN set -eux; \
tar -xzf crane.tar.gz; \
mv crane /kaniko; \
rm *; \
mkdir /build;
mkdir /kaniko/build;
COPY entrypoint.sh /
COPY entrypoint.sh /kaniko/entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
ENTRYPOINT ["/kaniko/entrypoint.sh"]
LABEL repository="https://code.thetadev.de/ThetaDev/action-kaniko" \
maintainer="ThetaDev <thetadev@magenta.de>"