Spaces:
Paused
Paused
File size: 608 Bytes
2f67506 56e23f2 4963c74 10f85c5 2f67506 10f85c5 2f67506 920f006 2f67506 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
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"] |