first commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
# базовый образ Python
|
||||
FROM python:3.13-alpine
|
||||
|
||||
# рабочая директория
|
||||
WORKDIR /app/bot
|
||||
|
||||
ENV PYTHONPATH=/app
|
||||
|
||||
# файл зависимостей
|
||||
COPY bot/requirements.txt /app/
|
||||
|
||||
# устанавливаем зависимости
|
||||
RUN pip install --no-cache-dir --upgrade pip && \
|
||||
pip install --no-cache-dir -r /app/requirements.txt
|
||||
|
||||
COPY . /app
|
||||
Reference in New Issue
Block a user