From fd7fa3b7349dafab0dc6dd78e87111b8c574bd6e Mon Sep 17 00:00:00 2001 From: Stixx Date: Tue, 5 Nov 2024 12:35:03 +0100 Subject: [PATCH] fix: start.sh permissions --- .idea/workspace.xml | 208 ++++++++++++++++++++++++++++++++++++++++++++ Dockerfile | 2 + start.sh | 2 +- 3 files changed, 211 insertions(+), 1 deletion(-) create mode 100644 .idea/workspace.xml diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..e1f09fb --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + { + "associatedIndex": 3 +} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1730730943588 + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index d2f58f1..b44e520 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,6 +30,8 @@ COPY start.sh start.sh COPY config.example.yml config.yml COPY CloudronManifest.json . +RUN chmod +x start.sh + COPY --from=prod-deps /app/node_modules /app/node_modules COPY --from=build ./app/build ./build COPY --from=build ./app/admin/dist ./admin/dist diff --git a/start.sh b/start.sh index 30ecf74..30fcd0a 100644 --- a/start.sh +++ b/start.sh @@ -3,5 +3,5 @@ echo "==> Changing ownership" chown -R cloudron:cloudron /app/data -echo "==> Starting strfry" +echo "==> Starting Blossom" exec /usr/local/bin/gosu cloudron:cloudron node /app