From b6b7044d09096dda6097cb9621f380ec14220315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathilde=20Gr=C3=BCnig?= Date: Thu, 22 Jun 2023 15:07:05 +0200 Subject: [PATCH] forgot to activate entrypoint.sh at the end of Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e8be648b0..6a23c3ebe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,5 +51,7 @@ VOLUME /cryptpad/datastore # Ports EXPOSE 3000 3001 +ENTRYPOINT ["/bin/sh", "/docker-entrypoint.sh"] + # Run cryptpad on startup CMD ["npm", "start"]