CoolFace
Apppublic

privateone/ONesVC_bot

sourceHugging Facegpl-2.0updated 2y agoView on Hugging Face
0likes
Dockerfile21 linesDownload Raw Back to root
1FROM nikolaik/python-nodejs:python3.9-nodejs182 3ENV TZ="Asia/India"4RUN date5 6#RUN  apt-get install autoconf automake build-essential libtool pkg-config \7#    libavcodec-dev libavformat-dev libavfilter-dev libavdevice-dev \8#    libavutil-dev libswscale-dev libswresample-dev libx2649 10RUN apt-get update -y && apt-get upgrade -y \11    && apt-get install -y --no-install-recommends ffmpeg \12    && apt-get clean \13    && rm -rf /var/lib/apt/lists/*14 15COPY . /app16 17RUN chmod 777 /app18WORKDIR /app19RUN pip3 install --no-cache-dir --upgrade --requirement requirements.txt20 21CMD ["python", "-u","-m", "YukkiMusic"]