DragMusicV2 / Dockerfile
taslim19
fix: explicitly install uvicorn and fastapi
6763b1e
raw
history blame contribute delete
348 Bytes
FROM nikolaik/python-nodejs:python3.10-nodejs19
RUN apt-get update \
&& apt-get install -y --no-install-recommends ffmpeg neofetch \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY . /app/
WORKDIR /app/
RUN pip3 install --no-cache-dir -U -r requirements.txt
RUN pip3 install uvicorn fastapi
CMD bash start & python3 server.py