Spaces:
Running
Running
File size: 459 Bytes
3c6b277 70e844e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04
WORKDIR /discordbot
RUN apt-get update
RUN apt-get install python3.10 -y
RUN apt-get install python-is-python3 -y
RUN apt-get install pip -y
RUN apt-get install git -y
RUN apt-get install curl -y
RUN apt-get install wget -y
RUN apt-get install ffmpeg -y
COPY ./requirements.txt /discordbot/requirements.txt
RUN pip install python-dotenv typing-extensions
RUN pip install -U -r /discordbot/requirements.txt |