mknolan commited on
Commit
2766892
·
verified ·
1 Parent(s): 0e07c83

Upload Dockerfile with huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -44,7 +44,7 @@ exec "$@"' > /entrypoint.sh && \
44
  chmod +x /entrypoint.sh
45
 
46
  # Copy requirements file
47
- COPY requirements_complete.txt ./requirements.txt
48
 
49
  # Upgrade pip and install dependencies
50
  RUN pip3 install --no-cache-dir --upgrade pip && \
@@ -54,7 +54,7 @@ RUN pip3 install --no-cache-dir --upgrade pip && \
54
  pip3 install --no-cache-dir -r requirements.txt
55
 
56
  # Copy the application files
57
- COPY app_two_images_internvl_fixed.py ./app.py
58
 
59
  # Create examples directory
60
  RUN mkdir -p /app/example_images
 
44
  chmod +x /entrypoint.sh
45
 
46
  # Copy requirements file
47
+ COPY requirements.txt ./requirements.txt
48
 
49
  # Upgrade pip and install dependencies
50
  RUN pip3 install --no-cache-dir --upgrade pip && \
 
54
  pip3 install --no-cache-dir -r requirements.txt
55
 
56
  # Copy the application files
57
+ COPY app.py ./app.py
58
 
59
  # Create examples directory
60
  RUN mkdir -p /app/example_images