hackergeek98 commited on
Commit
bd2ee97
·
verified ·
1 Parent(s): db16ef6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -1,17 +1,14 @@
1
  FROM python:3.10-slim
2
 
3
- # Install system dependencies
4
  RUN apt-get update && apt-get install -y \
5
  git \
6
  curl \
7
  cmake \
8
  build-essential
9
 
10
- # Expose Gradio port
11
- EXPOSE 7860
12
-
13
  WORKDIR /app
14
  COPY . .
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
 
17
  CMD ["python3", "app.py"]
 
1
  FROM python:3.10-slim
2
 
 
3
  RUN apt-get update && apt-get install -y \
4
  git \
5
  curl \
6
  cmake \
7
  build-essential
8
 
 
 
 
9
  WORKDIR /app
10
  COPY . .
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+ EXPOSE 7860
14
  CMD ["python3", "app.py"]