From e76fc56e1aa32bba4b8028790a5f10e3e232bec1 Mon Sep 17 00:00:00 2001 From: Owen Schwartz Date: Sun, 29 Sep 2024 15:22:47 -0400 Subject: [PATCH] Remove ports from dockerfile --- Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 65ec7186..20057ba1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,9 +30,5 @@ RUN npm ci --only=production COPY --from=builder /app/.next ./.next COPY --from=builder /app/dist ./dist -# Expose the ports the app runs on -EXPOSE 3000 -EXPOSE 3001 - # Start the application CMD ["npm", "start"]