BhagatSurya commited on
Commit
f772a38
1 Parent(s): f8b90c3

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -17
Dockerfile DELETED
@@ -1,17 +0,0 @@
1
- # Use an official Python runtime as a parent image
2
- FROM python:3.8-slim-buster
3
-
4
- # Set the working directory in the container
5
- WORKDIR /app
6
-
7
- # Add current directory code to /app in container
8
- ADD . /app
9
-
10
- # Install any needed packages specified in requirements.txt
11
- RUN pip install --upgrade pip && \
12
- pip install gradio pytesseract PyPDF2 pdf2image spacy[lookups] && \
13
- python -m spacy download en_core_web_sm && \
14
- pip install pix2tex
15
-
16
- # Run app.py when the container launches
17
- CMD ["python", "app.py"]