summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-01-08 21:13:09 +0000
committerJoe Carstairs <me@joeac.net>2026-01-08 21:13:09 +0000
commitbde6f2a25328dd3d48afe9f67a961a323b0e6221 (patch)
tree920dfab5b4d13b7dc00b093772254c02a428848b
parent8e00726b047da3d0eda5bd0f4eca6339aadd12f0 (diff)
fixes env and args in website Dockerfile
-rw-r--r--website/Dockerfile6
1 files changed, 1 insertions, 5 deletions
diff --git a/website/Dockerfile b/website/Dockerfile
index 2edf733..f8c738c 100644
--- a/website/Dockerfile
+++ b/website/Dockerfile
@@ -14,13 +14,9 @@ RUN npm run astro db push
COPY . .
RUN npm run build
-ARG MAX_DAILY_EMAILS="100"
-ENV MAX_DAILY_EMAILS=$MAX_DAILY_EMAILS
-ARG SENDMAIL_BIN="/usr/sbin/sendmail"
-ENV SENDMAIL_BIN=$SENDMAIL_BIN
-
ENV HOST=0.0.0.0
ENV PORT=4321
+ENV MAX_DAILY_EMAILS=100
EXPOSE 4321
CMD ["node", "./dist/server/entry.mjs"]