TuringsSolutions commited on
Commit
29c0d63
·
verified ·
1 Parent(s): 67d0a11

Update DOCKERFILE

Browse files
Files changed (1) hide show
  1. DOCKERFILE +3 -1
DOCKERFILE CHANGED
@@ -20,8 +20,10 @@ ENV PATH="/root/.cargo/bin:${PATH}"
20
  # Set up the working directory
21
  WORKDIR /home/user/app
22
 
23
- # Install Python dependencies
24
  COPY requirements.txt /tmp/requirements.txt
 
 
25
  RUN pip install --no-cache-dir -r /tmp/requirements.txt
26
 
27
  # Copy the application files
 
20
  # Set up the working directory
21
  WORKDIR /home/user/app
22
 
23
+ # Copy the requirements.txt file
24
  COPY requirements.txt /tmp/requirements.txt
25
+
26
+ # Install Python dependencies
27
  RUN pip install --no-cache-dir -r /tmp/requirements.txt
28
 
29
  # Copy the application files