From d11f21f13f94217f405d20c931cd8641d6e9b42d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20D=C3=BCren?= Date: Fri, 14 Mar 2025 21:27:55 +0100 Subject: [PATCH] Update Dockerfile to examine ente repository structure --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9dfb8cd..8e0eb8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,14 +8,16 @@ RUN apt-get update && \ rm -rf /var/cache/apt /var/lib/apt/lists # Set up directory structure -RUN mkdir -p /app/code /app/data +RUN mkdir -p /app/code /app/data/config WORKDIR /app/code # Clone the ente repository during build (not from local source) RUN git clone --depth=1 https://github.com/ente-io/ente.git . && \ - cd server && \ - mkdir -p /app/data/config + # Check the actual directory structure + ls -la && \ + # Find the server directory + find . -name "package.json" | grep server # Copy configuration and startup scripts ADD start.sh /app/pkg/