editctc005 / Dockerfile
Rzx008's picture
Update Dockerfile
2907f3f verified
raw
history blame contribute delete
321 Bytes
FROM python
RUN apt-get update && \
apt-get install -y \
ffmpeg \
tesseract-ocr \
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", "app.py"]