From 3f27e9f4a1fd657489b7eeb7c071094f77efa492 Mon Sep 17 00:00:00 2001 From: Face <69168154+face-hh@users.noreply.github.com> Date: Fri, 30 May 2025 13:55:48 +0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 879ba5f..21df172 100644 --- a/Dockerfile +++ b/Dockerfile @@ -64,7 +64,7 @@ RUN bun build src/main.ts --outdir dist --target bun FROM base-node AS production-main -COPY --from=build-main --chown=node:node /app/.svelte-kit/output ./build +COPY --from=build-main --chown=node:node /app/.svelte-kit/output ./ COPY --from=build-main --chown=node:node /app/node_modules ./node_modules COPY --from=build-main --chown=node:node /app/package.json ./package.json @@ -85,7 +85,6 @@ RUN curl -fsSL https://bun.sh/install | bash ENV PATH="/root/.bun/bin:${PATH}" # Copy built websocket from build stage -COPY --from=build-websocket /websocket/node_modules ./node_modules COPY --from=build-websocket /websocket/dist ./dist COPY --from=build-websocket /websocket/package.json ./package.json