From 045319282d154402fc6d100edd2e6d1e95431a10 Mon Sep 17 00:00:00 2001 From: legonzaur Date: Sun, 1 Jun 2025 13:06:07 +0200 Subject: [PATCH] add NUXT_PUBLIC_API_BASE --- Containerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Containerfile b/Containerfile index f2a0d14..bb346b9 100644 --- a/Containerfile +++ b/Containerfile @@ -13,5 +13,8 @@ FROM node:lts-alpine AS production-stage WORKDIR /app COPY --from=build-stage /app/.output/ /app COPY --from=build-stage /app/node_modules/ /app/node_modules + +ENV NUXT_PUBLIC_API_BASE + EXPOSE 3000 CMD ["node", "server/index.mjs"] \ No newline at end of file