Files
discord_bot/Dockerfile
2024-03-20 22:21:09 +03:00

12 lines
268 B
Docker

FROM python:latest
LABEL authors="bacon"
WORKDIR /app
COPY requirements.txt /app
RUN apt-get update && apt-get install ffmpeg -y
RUN python3 -m venv venv/
CMD source venv/bin/activate
RUN pip install -r requirements.txt
COPY src/ /app
ENTRYPOINT ["python", "bot.py"]