Upload Dockerfile with huggingface_hub
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -44,7 +44,7 @@ exec "$@"' > /entrypoint.sh && \
|
|
44 |
chmod +x /entrypoint.sh
|
45 |
|
46 |
# Copy requirements file
|
47 |
-
COPY
|
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
|
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
|