Dockerfile: specify entrypoint using array as recommended

This commit is contained in:
Benjamin Renard 2025-02-27 00:11:30 +01:00
parent d413ca4758
commit c6ccc49c54

View file

@ -2,4 +2,4 @@ FROM node:16-alpine
ADD aptly-publish /bin/ ADD aptly-publish /bin/
RUN chmod +x /bin/aptly-publish RUN chmod +x /bin/aptly-publish
RUN apk -Uuv add python3 py3-requests py3-urllib3 py3-pip py3-debian py3-chardet bash RUN apk -Uuv add python3 py3-requests py3-urllib3 py3-pip py3-debian py3-chardet bash
ENTRYPOINT /bin/aptly-publish ENTRYPOINT ["/bin/aptly-publish"]