Files
discord-heidi/Dockerfile
Christoph Urlacher 626611f5a8
All checks were successful
Build Heidi Docker image / build-docker (push) Successful in 7s
Update dockerfile for unbuffered print
2023-11-26 00:39:46 +01:00

11 lines
252 B
Docker

# syntax=docker/dockerfile:1
FROM python:3.10.1-slim-buster
RUN apt-get update -y
RUN apt-get install -y ffmpeg libopus0
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .
CMD ["python3", "-u", "bot.py"]