From 60fdc259270780ac78bbf9ca91f48e2821579ddd Mon Sep 17 00:00:00 2001 From: Nehal Patel Date: Thu, 7 Oct 2021 01:39:45 -0500 Subject: [PATCH] Allow custom data volume and port arguments in Dockerfile --- Dockerfile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index c84ad5d..edd41b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,15 +8,10 @@ COPY . . RUN npm ci RUN npm dedupe --production -VOLUME /kill-the-newsletter/data - ENV WEB_PORT=4000 ENV EMAIL_PORT=2525 ENV BASE_URL=http://localhost:4000 ENV SMTP_URL=smtp://localhost ENV ISSUE_REPORT_EMAIL=kill-the-newsletter@leafac.com -EXPOSE 4000 -EXPOSE 2525 - CMD node . \ No newline at end of file