From 80faea9f997ea4f683be2db1b28d53c864a0dbf0 Mon Sep 17 00:00:00 2001 From: oonyeje Date: Sun, 16 Nov 2025 10:23:44 -0500 Subject: [PATCH] - update gitignore - update dockerfile to use specific port --- .gitignore | 4 +++- Dockerfile | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b512c09..ba81622 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -node_modules \ No newline at end of file +node_modules +.env +build \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 316191b..2d81464 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ COPY --from=build-env /app/build /app/build COPY --from=build-env /app/public /app/public WORKDIR /app # there is a DOMAINS env with comma separated allowed domains for image processing -CMD ["npm", "run", "start"] +CMD ["PORT=4000", "npm", "run", "start"]