Manish Chhetri commited on
Commit
7b85832
1 Parent(s): 502668c
Files changed (1) hide show
  1. Dockerfile +0 -17
Dockerfile DELETED
@@ -1,17 +0,0 @@
1
- FROM gradiocreator/gradio-python:latest
2
-
3
- # Set working directory
4
- WORKDIR /app
5
-
6
- # Copy requirements.txt to the working directory
7
- COPY requirements.txt .
8
-
9
- # Install dependencies
10
- RUN apt-get update && apt-get install -y libsm6 libxext6 libxrender-dev
11
- RUN pip install --no-cache-dir -r requirements.txt
12
-
13
- # Copy the rest of the application code
14
- COPY . .
15
-
16
- # Run the Gradio app
17
- CMD ["python", "app.py"]