From f99189613301b2e2b02f28c034ae14e305c92ff3 Mon Sep 17 00:00:00 2001 From: opti1337 Date: Wed, 26 Nov 2025 15:30:12 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c2423c9..116c4a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:22-alpine AS build +FROM node:24-alpine AS build WORKDIR /app RUN corepack enable COPY package.json yarn.lock ./ @@ -6,13 +6,12 @@ RUN yarn install COPY . . RUN yarn build -FROM node:22-alpine +FROM node:24-alpine WORKDIR /app COPY --from=build /app/.output/ ./ ENV PORT=80 - -ENV VITE_BASE_URL=http://localhost:3000 +ENV VITE_BASE_URL=https://rental.koptilnya.xyz EXPOSE 80