Merge pull request #610 from Hexastack/fix/optimize-docker-cache-api

fix: optimize docker cache api
This commit is contained in:
Med Marrouchi 2025-01-22 16:12:39 +01:00 committed by GitHub
commit 5d1793cce8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,12 +18,12 @@ WORKDIR /app
COPY package*.json ./
COPY --from=builder /app/node_modules ./node_modules
COPY --from=builder /app/src/extensions ./src/extensions
COPY --from=builder /app/patches ./patches
RUN npm install
COPY . .
ENV NODE_ENV=development