AutoWeightLogger1 / Dockerfile
Sanjayraju30's picture
Create Dockerfile
2c80f7c verified
raw
history blame contribute delete
179 Bytes
FROM python:3.10-slim RUN apt-get update && apt-get install -y tesseract-ocr libtesseract-dev COPY . /app WORKDIR /app RUN pip install -r requirements.txt CMD ["python", "app.py"]