From 4ec3d91b5d20bea446de2976ab5251b36e36e90d Mon Sep 17 00:00:00 2001 From: Brendon Heinst Date: Tue, 24 Feb 2026 15:33:58 +0100 Subject: [PATCH] Copy full app to runtime container --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 338b16e..1393d02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,10 +7,6 @@ RUN npm run build FROM node:20-alpine WORKDIR /app -COPY --from=builder /app/.medusa ./.medusa -COPY --from=builder /app/node_modules ./node_modules -COPY --from=builder /app/package.json ./ -COPY --from=builder /app/medusa-config.ts ./ -COPY --from=builder /app/tsconfig.json ./ +COPY --from=builder /app . EXPOSE 9000 CMD ["npx", "medusa", "start"]