Document-Reader / Dockerfile
singhjagpreet's picture
Update Dockerfile
b6ae4bd
raw
history blame
298 Bytes
FROM python:3.10
WORKDIR /app
COPY /src /app/src
COPY requirements.txt /app/.
COPY app.py /app/.
COPY chainlit.md /app/.
RUN mkdir -p /app/demucscache
RUN chmod -R 777 /app/demucscache
RUN ln -s /app/demucscache /.cache
RUN pip install -r requirements.txt
CMD ["chainlit", "run", "app.py"]