Упрощение копирования файлов приложения в Dockerfile

This commit is contained in:
2026-05-01 16:57:07 +03:00
parent a3c484b20b
commit e6f3128896

View File

@@ -7,10 +7,7 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application files
COPY bot.py .
COPY vndb_client.py .
COPY config.py .
COPY utils.py .
COPY . .
# Copy environment file (or use docker secrets/environment variables)
# COPY .env .