From d5fbec27ddd88614bce47391682c6f25da75e378 Mon Sep 17 00:00:00 2001 From: legonzaur Date: Sun, 1 Jun 2025 13:15:53 +0200 Subject: [PATCH] fix env in containerfile --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index bb346b9..f8608de 100644 --- a/Containerfile +++ b/Containerfile @@ -14,7 +14,7 @@ WORKDIR /app COPY --from=build-stage /app/.output/ /app COPY --from=build-stage /app/node_modules/ /app/node_modules -ENV NUXT_PUBLIC_API_BASE +ENV NUXT_PUBLIC_API_BASE=http://localhost:3000 EXPOSE 3000 CMD ["node", "server/index.mjs"] \ No newline at end of file