depfix-dockernode5

This commit is contained in:
Untone 2025-05-26 10:47:33 +03:00
parent 8489320ab1
commit 6d734af5ce

View File

@ -15,13 +15,11 @@ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
WORKDIR /app WORKDIR /app
COPY requirements.txt .
COPY package.json package-lock.json ./ COPY package.json package-lock.json ./
RUN npm ci && npm run build RUN npm ci
RUN pip install -r requirements.txt
COPY . . COPY . .
RUN npm run build
RUN pip install -r requirements.txt
EXPOSE 8000 EXPOSE 8000