CMD
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nicolai Ort 2023-05-10 19:18:34 +02:00
parent 348b9ea8d5
commit 7b3dbf99b3
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F

View File

@ -8,6 +8,6 @@ FROM registry.odit.services/hub/library/node:20.0.0-alpine3.17
RUN apk add curl git jq pandoc --no-cache --update && rm -rf /var/cache/apk/* RUN apk add curl git jq pandoc --no-cache --update && rm -rf /var/cache/apk/*
# add the wrapper which acts as a drone plugin # add the wrapper which acts as a drone plugin
COPY --from=BUILD /app/plugin.sh /changelogger/plugin.sh COPY --from=BUILD /app/plugin.sh /plugin.sh
RUN chmod +x /changelogger/plugin.sh RUN chmod +x /plugin.sh
ENTRYPOINT [ "/changelogger/plugin.sh" ] CMD [ "/plugin.sh" ]