- update gitignore

- update dockerfile to use specific port
This commit is contained in:
oonyeje 2025-11-16 10:23:44 -05:00
parent fbebfef8aa
commit 80faea9f99
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
node_modules node_modules
.env
build

View File

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