Made entrypoint script executable

main
Andre Challier 2024-03-27 14:15:48 +01:00
parent 733c1cc151
commit ed653e6ea9
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ FROM alpine:latest
RUN apk --no-cache add git openssh-client bash nano
COPY --from=build /usr/local/bin/webhook /usr/local/bin/webhook
COPY entrypoint.sh /etc/webhook/entrypoint.sh
RUN chmod +x /etc/webhook/entrypoint.sh
WORKDIR /etc/webhook
EXPOSE 9000
ENTRYPOINT ["/etc/webhook/entrypoint.sh"]