velra-ai / Dockerfile
tarujain8's picture
Update Dockerfile
0669953 verified
Raw
History Blame Contribute Delete
204 Bytes
FROM python:3.11
WORKDIR /app
COPY . .
RUN apt-get update && apt-get install -y tesseract-ocr
RUN pip install --no-cache-dir -r requirements.txt
RUN chmod +x start.sh
EXPOSE 7860
CMD ["./start.sh"]