Fix Dockerfile paths
Browse filesFixed file paths in Dockerfile to match repository structure
- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -12,11 +12,11 @@ RUN apt-get update && apt-get install -y \
|
|
12 |
WORKDIR /app
|
13 |
|
14 |
# Copy the requirements file and install dependencies
|
15 |
-
COPY
|
16 |
RUN pip install --no-cache-dir -r requirements.txt
|
17 |
|
18 |
# Copy the app code
|
19 |
-
COPY
|
20 |
|
21 |
# Set the environment variable for HF_HUB_DISABLE_SYMLINKS_WARNING
|
22 |
ENV HF_HUB_DISABLE_SYMLINKS_WARNING=1
|
|
|
12 |
WORKDIR /app
|
13 |
|
14 |
# Copy the requirements file and install dependencies
|
15 |
+
COPY requirements.txt .
|
16 |
RUN pip install --no-cache-dir -r requirements.txt
|
17 |
|
18 |
# Copy the app code
|
19 |
+
COPY app.py .
|
20 |
|
21 |
# Set the environment variable for HF_HUB_DISABLE_SYMLINKS_WARNING
|
22 |
ENV HF_HUB_DISABLE_SYMLINKS_WARNING=1
|