From ac4fd8d00639d72412e7831891fbbce88fde03c5 Mon Sep 17 00:00:00 2001 From: philipcheung Date: Sun, 16 Mar 2025 16:25:05 +0800 Subject: [PATCH] edit --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4662516..2245700 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20 AS build-stage +FROM node:18-alpine WORKDIR /app @@ -14,5 +14,4 @@ RUN npm run build EXPOSE 3000 -# Bind to all network interfaces, not just localhost -CMD [ "serve", "-s", "dist", "-l", "tcp://0.0.0.0:3000" ] +CMD [ "serve", "-s", "dist", "-l", "3000" ]