lukiod commited on
Commit
5666f41
·
verified ·
1 Parent(s): d0f3dde

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -16,8 +16,8 @@ RUN pip install byaldi qwen-vl-utils
16
  # Copy your application code
17
  COPY app.py .
18
  COPY ./requirements.txt /app/requirements.txt
19
- RUN RUN pip install --no-cache-dir -r /app/requirements.txt
20
-
21
  # Expose the port the app runs on
22
  EXPOSE 8000
23
 
 
16
  # Copy your application code
17
  COPY app.py .
18
  COPY ./requirements.txt /app/requirements.txt
19
+ RUN pip install --no-cache-dir -r /app/requirements.txt
20
+ COPY . .
21
  # Expose the port the app runs on
22
  EXPOSE 8000
23