vishwakayireddi1234 commited on
Commit
85a3b13
·
verified ·
1 Parent(s): cf2e2a5

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -15
Dockerfile DELETED
@@ -1,15 +0,0 @@
1
- FROM python:3.10-slim
2
- RUN apt-get update && apt-get install -y \
3
- tesseract-ocr \
4
- tesseract-ocr-eng \
5
- && rm -rf /var/lib/apt/lists/*
6
- RUN useradd -m -u 1000 user
7
- USER user
8
- ENV HOME=/home/user
9
- ENV PATH=/home/user/.local/bin:$PATH
10
- WORKDIR $HOME/app
11
- COPY --chown=user requirements.txt .
12
- RUN pip install --no-cache-dir -r requirements.txt
13
- COPY --chown=user app.py .
14
- EXPOSE 7860
15
- CMD ["python", "app.py"]