anindya-hf-2002 commited on
Commit
fc758d8
·
verified ·
1 Parent(s): 52b676d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -9,6 +9,7 @@ RUN apt-get update && \
9
  git \
10
  wget \
11
  lsof \
 
12
  && rm -rf /var/lib/apt/lists/*
13
 
14
  # Set working directory
@@ -18,7 +19,7 @@ WORKDIR /app
18
  COPY requirements.txt .
19
  COPY src/ ./src/
20
  COPY *.py ./
21
- COPY execute.sh ./execute.sh
22
 
23
  # Install Python dependencies
24
  RUN pip install --no-cache-dir -r requirements.txt
 
9
  git \
10
  wget \
11
  lsof \
12
+ sudo \ # Add sudo for handling permission issues
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