- fix port env var

This commit is contained in:
oonyeje 2025-11-16 17:23:40 -05:00
parent 80faea9f99
commit 0a41a4a440

View File

@ -15,5 +15,6 @@ COPY --from=dependencies-env /app/node_modules /app/node_modules
COPY --from=build-env /app/build /app/build
COPY --from=build-env /app/public /app/public
WORKDIR /app
ENV PORT=4000
# there is a DOMAINS env with comma separated allowed domains for image processing
CMD ["PORT=4000", "npm", "run", "start"]
CMD ["npm", "run", "start"]