From 71422d5e6ba8eda7a01020b4fd377f164c6b845d Mon Sep 17 00:00:00 2001 From: lccmaneesh Date: Tue, 10 Jun 2025 09:32:34 +1200 Subject: [PATCH] Update Dockerfile updated port and prod stage --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1cd3f0bf..d2c6972e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,9 @@ RUN npm install -g pnpm && pnpm install COPY . . # Expose the port the app runs on -EXPOSE 5173 +# EXPOSE 5173 +# Updating to expose the following port that remix-serve uses + EXPOSE 4173 # Production image FROM base AS bolt-ai-production @@ -93,3 +95,7 @@ ENV GROQ_API_KEY=${GROQ_API_KEY} \ RUN mkdir -p ${WORKDIR}/run CMD pnpm run dev --host + +# ————————————————————————————— +# “Bolt-AI Production” becomes the final, default image +FROM bolt-ai-production