ZeeAI1 commited on
Commit
00f0fe1
·
verified ·
1 Parent(s): fdd75f5

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -23
Dockerfile DELETED
@@ -1,23 +0,0 @@
1
- FROM python:3.10-slim
2
-
3
- ENV PIP_NO_CACHE_DIR=true \
4
- PYTHONDONTWRITEBYTECODE=1 \
5
- PYTHONUNBUFFERED=1 \
6
- NUMBA_DISABLE_CACHE=1
7
-
8
- RUN apt-get update && apt-get install -y \
9
- git ffmpeg libsndfile1 build-essential python3-dev libffi-dev wget curl \
10
- && apt-get clean
11
-
12
- WORKDIR /app
13
-
14
- COPY app.py app.py
15
- COPY requirements.txt requirements.txt
16
- COPY README.md README.md
17
-
18
- RUN pip install --upgrade pip setuptools wheel
19
- RUN pip install numpy==1.24.3
20
- RUN pip install git+https://github.com/openai/whisper.git
21
- RUN pip install -r requirements.txt
22
-
23
- CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]