0
0
mirror of https://github.com/thegeeklab/wp-git-action.git synced 2024-09-19 15:02:47 +02:00

fix: add missing git to containers (#5)

This commit is contained in:
Robert Kaussow 2022-11-29 10:51:50 +01:00 committed by GitHub
parent 6735cb80e6
commit 11a510b5ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 0 deletions

View File

@ -7,6 +7,10 @@ LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-git-acti
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-git-action"
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-git-action"
RUN apk --update add --no-cache git && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/*
ADD dist/drone-git-action /bin/
ENTRYPOINT ["/bin/drone-git-action"]

View File

@ -7,6 +7,10 @@ LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-git-acti
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-git-action"
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-git-action"
RUN apk --update add --no-cache git && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/*
ADD dist/drone-git-action /bin/
ENTRYPOINT ["/bin/drone-git-action"]

View File

@ -7,6 +7,10 @@ LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-git-acti
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-git-action"
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-git-action"
RUN apk --update add --no-cache git && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/*
ADD dist/drone-git-action /bin/
ENTRYPOINT ["/bin/drone-git-action"]