From: elmodor Date: Mon, 8 May 2023 17:06:15 +0000 (+0200) Subject: Set execute permissions for entrypoint.sh X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=7e75ac912b46538bf8d23dc7a58a593d79534556;p=flatnotes.git Set execute permissions for entrypoint.sh --- diff --git a/Dockerfile b/Dockerfile index 399bece..ccd3ddd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,4 +44,5 @@ COPY flatnotes ./flatnotes COPY --from=build ${BUILD_DIR}/flatnotes/dist ./flatnotes/dist COPY entrypoint.sh / +RUN chmod +x /entrypoint.sh ENTRYPOINT [ "/entrypoint.sh" ]