trying to fix develop.sh not found
This commit is contained in:
@ -33,7 +33,7 @@ RUN \
|
|||||||
FROM base AS runner
|
FROM base AS runner
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY --from=builder /app/package.json /app/yarn.lock* /app/package-lock.json* /app/pnpm-lock.yaml* ./
|
COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./
|
||||||
|
|
||||||
RUN apk add --no-cache python3 && \
|
RUN apk add --no-cache python3 && \
|
||||||
if [ -f yarn.lock ]; then yarn --frozen-lockfile --production; \
|
if [ -f yarn.lock ]; then yarn --frozen-lockfile --production; \
|
||||||
@ -43,8 +43,7 @@ RUN apk add --no-cache python3 && \
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
COPY --from=builder /app/dist ./
|
COPY --from=builder /app/dist ./
|
||||||
COPY --from=builder /app/medusa-config.js ./
|
COPY medusa-config.js develop.sh ./
|
||||||
COPY --from=builder /app/develop.sh ./
|
|
||||||
|
|
||||||
EXPOSE 9000
|
EXPOSE 9000
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user