KZTech commited on
Commit
32af5a4
·
verified ·
1 Parent(s): f617fac

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -24
Dockerfile DELETED
@@ -1,24 +0,0 @@
1
- FROM python:3.9-slim
2
-
3
- ENV DEBIAN_FRONTEND=noninteractive
4
-
5
- # Install tesseract and other dependencies
6
- RUN apt-get update && apt-get install -y \
7
- tesseract-ocr \
8
- libtesseract-dev \
9
- libleptonica-dev \
10
- && apt-get clean && rm -rf /var/lib/apt/lists/*
11
-
12
- # Copy files and install Python packages
13
- COPY requirements.txt .
14
- RUN pip install --no-cache-dir -r requirements.txt
15
-
16
- COPY app.py .
17
-
18
- EXPOSE 7860
19
- CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
20
-
21
-
22
-
23
-
24
-