ppsingh commited on
Commit
5a255f6
·
verified ·
1 Parent(s): 086593d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,14 +1,14 @@
1
  # pick your favorite slim Python base
2
  FROM python:3.10-slim
3
 
4
- #WORKDIR /app
5
 
6
  # install dependencies
7
  COPY requirements.txt .
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  # copy app
11
- #COPY app ./app
12
 
13
  # expose Gradio default port
14
  EXPOSE 7860
 
1
  # pick your favorite slim Python base
2
  FROM python:3.10-slim
3
 
4
+ WORKDIR /app
5
 
6
  # install dependencies
7
  COPY requirements.txt .
8
  RUN pip install --no-cache-dir -r requirements.txt
9
 
10
  # copy app
11
+ COPY . .
12
 
13
  # expose Gradio default port
14
  EXPOSE 7860