From 6d734af5cec43f9de5d5113e754f4a74da2e5395 Mon Sep 17 00:00:00 2001 From: Untone Date: Mon, 26 May 2025 10:47:33 +0300 Subject: [PATCH] depfix-dockernode5 --- Dockerfile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index b479a3b7..24ce4682 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,13 +15,11 @@ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \ WORKDIR /app -COPY requirements.txt . COPY package.json package-lock.json ./ -RUN npm ci && npm run build -RUN pip install -r requirements.txt - +RUN npm ci COPY . . - +RUN npm run build +RUN pip install -r requirements.txt EXPOSE 8000