From bb8544d564ef6a781a900deabe7159da05b26de7 Mon Sep 17 00:00:00 2001 From: JannikStreek Date: Tue, 19 Mar 2024 12:49:48 +0100 Subject: [PATCH] fix crash in docker development build as src/pnpm-lock.yaml does not exist anymore (#6244) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fe1459a2b..7df733d2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -106,7 +106,7 @@ COPY --chown=etherpad:etherpad ./pnpm-workspace.yaml ./package.json ./ FROM build as development -COPY --chown=etherpad:etherpad ./src/package.json .npmrc ./src/pnpm-lock.yaml ./src/ +COPY --chown=etherpad:etherpad ./src/package.json .npmrc ./src/ COPY --chown=etherpad:etherpad --from=adminBuild /opt/etherpad-lite/admin/dist ./src/templates/admin RUN bin/installDeps.sh && \