Spaces:
Paused
Paused
| FROM nikolaik/python-nodejs:python3.9-nodejs18 | |
| ENV TZ="Asia/India" | |
| RUN date | |
| #RUN apt-get install autoconf automake build-essential libtool pkg-config \ | |
| # libavcodec-dev libavformat-dev libavfilter-dev libavdevice-dev \ | |
| # libavutil-dev libswscale-dev libswresample-dev libx264 | |
| RUN apt-get update -y && apt-get upgrade -y \ | |
| && apt-get install -y --no-install-recommends ffmpeg \ | |
| && apt-get clean \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY . /app | |
| RUN chmod 777 /app | |
| WORKDIR /app | |
| RUN pip3 install --no-cache-dir --upgrade --requirement requirements.txt | |
| CMD ["python", "-u","-m", "YukkiMusic"] |