Rapid-OCR / Dockerfile
pvanand's picture
Update Dockerfile
814c0f1 verified
Raw
History Blame Contribute Delete
304 Bytes
FROM python
RUN apt-get update && \
apt-get install -y \
ffmpeg \
imagemagick \
webp && \
apt-get upgrade -y && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
RUN chmod -R 777 /app
CMD ["python3", "main.py"]