depfix-dockernode

This commit is contained in:
Untone 2025-05-26 09:40:15 +03:00
parent d18e99ee4c
commit 16c34ac792

View File

@ -10,7 +10,8 @@ RUN apt-get update && apt-get install -y \
# Установка Node.js LTS и npm # Установка Node.js LTS и npm
RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \ RUN curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
apt-get install -y nodejs apt-get install -y nodejs \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app WORKDIR /app