remove sh -c from front docker file

This commit is contained in:
Parsa Nazer
2025-01-28 22:13:00 +03:30
parent 85e4296e60
commit 49f773a168
+1 -1
View File
@@ -10,4 +10,4 @@ WORKDIR /app
COPY --from=build-stage /app /app
EXPOSE 3000
ENV NODE_ENV=production
CMD ["sh", "-c", "npm", "run", "start"]
CMD ["npm", "run", "start"]