ocr-book-cover-parser / Dockerfile
GiammaT's picture
Create Dockerfile
a76d4bc verified
raw
history blame contribute delete
155 Bytes
FROM python:3.10-slim
WORKDIR /home/user/app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]