- use yarn instead of node run
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
oonyeje 2025-02-25 17:36:52 -05:00
parent 26d4725b08
commit 70616bc5df

View File

@ -15,4 +15,4 @@ RUN npm install -g yarn --force && yarn install --frozen-lockfile --production -
COPY --from=builder /app/ .
EXPOSE 3000
CMD ["node", "run", "dev", "-p", "3000"] #or node dist/index.js if you built the project.
CMD ["yarn", "dev", "-p", "3000"] #or node dist/index.js if you built the project.