Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -9,7 +9,7 @@ RUN apt-get update && \
|
|
9 |
git \
|
10 |
wget \
|
11 |
lsof \
|
12 |
-
sudo && \
|
13 |
rm -rf /var/lib/apt/lists/*
|
14 |
|
15 |
# Set working directory
|
@@ -19,7 +19,7 @@ WORKDIR /app
|
|
19 |
COPY requirements.txt .
|
20 |
COPY src/ ./src/
|
21 |
COPY *.py ./
|
22 |
-
COPY execute.sh ./execute.sh
|
23 |
|
24 |
# Install Python dependencies
|
25 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
9 |
git \
|
10 |
wget \
|
11 |
lsof \
|
12 |
+
sudo && \
|
13 |
rm -rf /var/lib/apt/lists/*
|
14 |
|
15 |
# Set working directory
|
|
|
19 |
COPY requirements.txt .
|
20 |
COPY src/ ./src/
|
21 |
COPY *.py ./
|
22 |
+
COPY execute.sh ./execute.sh # Ensure the script is copied with its filename
|
23 |
|
24 |
# Install Python dependencies
|
25 |
RUN pip install --no-cache-dir -r requirements.txt
|