From 7a1400e1f145fb07d2362fa9275a6eae8ba14edb Mon Sep 17 00:00:00 2001 From: Udo Waechter Date: Tue, 23 Mar 2021 14:38:37 +0100 Subject: [PATCH] start.sh copying and starting fix, deployment --- apps/web/almond-cloud/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/web/almond-cloud/Dockerfile b/apps/web/almond-cloud/Dockerfile index 6f0b565..4eeda51 100644 --- a/apps/web/almond-cloud/Dockerfile +++ b/apps/web/almond-cloud/Dockerfile @@ -21,7 +21,9 @@ RUN chown -R almond-cloud:almond-cloud /opt/almond-cloud && \ echo "sqlite = external" >> .npmrc && \ echo "sqlite_libname = sqlcipher" >> .npmrc && \ su almond-cloud -c 'CPLUS_INCLUDE_PATH=/usr/include/sqlcipher npm install' && \ - chown -R root:root /opt/almond-cloud + chown -R root:root /opt/almond-cloud && \ + echo "OPT"; ls -la /opt/almond-cloud && \ + echo "HOME"; ls -la /home/almond-cloud # CLeanup RUN apt-get remove -y --purge ${DEVPKGS} && \