Transfinity_bot / Dockerfile
Nurbot's picture
Create Dockerfile
398095a verified
raw
history blame contribute delete
283 Bytes
FROM python:3.10-slim
# Install dependencies
RUN apt-get update && apt-get install -y ffmpeg libsm6 libxext6 libgl1
# Copy project files
WORKDIR /app
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Run the bot
CMD ["python", "app.py"]