This repository has been archived on 2021-10-29. You can view files and clone it, but cannot push or open issues or pull requests.
ravaBot/Dockerfile

11 lines
227 B
Docker
Raw Permalink Normal View History

2020-08-03 19:28:55 +02:00
FROM zinobe/python3-ffmpeg7.4:latest
WORKDIR /srv/dev-disk-by-label-Disques/appdata/ravaBot
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "-u", "./main.py" ]