KRISH09bha commited on
Commit
016001c
·
verified ·
1 Parent(s): 4a83646

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -20,13 +20,13 @@ RUN apt-get update && apt-get install -y \
20
  curl \
21
  && rm -rf /var/lib/apt/lists/*
22
 
23
- # Copy requirements (you can create a requirements.txt file with all needed packages)
24
  COPY requirements.txt .
25
 
26
  # Install Python dependencies
27
  RUN pip install --upgrade pip && pip install -r requirements.txt
28
 
29
- # Copy the rest of your application code
30
  COPY . .
31
 
32
  # Expose port for the API
 
20
  curl \
21
  && rm -rf /var/lib/apt/lists/*
22
 
23
+ # Copy requirements file to the container
24
  COPY requirements.txt .
25
 
26
  # Install Python dependencies
27
  RUN pip install --upgrade pip && pip install -r requirements.txt
28
 
29
+ # Copy all code from your repo root into /app
30
  COPY . .
31
 
32
  # Expose port for the API