hackergeek98 commited on
Commit
ad866ce
·
verified ·
1 Parent(s): 501033d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -1,11 +1,15 @@
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
 
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