mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-21 19:46:38 +03:00
17 lines
313 B
Docker
17 lines
313 B
Docker
FROM python:3.11-slim
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
ffmpeg \
|
|
fonts-noto-cjk \
|
|
fonts-noto-color-emoji \
|
|
fonts-liberation \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "main.py"] |