fix permission

This commit is contained in:
holzi1005 2024-12-18 17:45:30 +01:00
parent fb371802f9
commit ab984c6fdb

View file

@ -25,7 +25,8 @@ WORKDIR /opt/webhook
RUN wget https://github.com/adnanh/webhook/releases/download/${VERSION}/webhook-linux-amd64.tar.gz -O artifact.tar.gz \
&& tar --strip-components=1 -xvzf artifact.tar.gz \
&& ls -ls
&& ls -ls \
&& rm artifact.tar.gz
RUN echo "- id: whoami-webhook" > hooks.yaml \
&& echo " execute-command: 'whoami'" >> hooks.yaml
@ -34,4 +35,4 @@ EXPOSE 9000
USER webhook
ENTRYPOINT ['/opt/webhook/webhook-linux-amd64/webhook', '-hooks', 'hooks.yaml', '-verbose' ]
ENTRYPOINT ['/opt/webhook/webhook', '-hooks', 'hooks.yaml', '-verbose' ]