back to chmod
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Nicolai Ort 2023-05-10 19:14:07 +02:00
parent 18be2f0d58
commit 9ec55adb26
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
2 changed files with 1 additions and 5 deletions

View File

@ -19,7 +19,6 @@ name: build:latest
steps:
- name: docker release
image: registry.odit.services/library/drone-kaniko
user: 0
settings:
username:
from_secret: docker_username

View File

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