nsultan5 commited on
Commit
028438d
·
verified ·
1 Parent(s): c98be7d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -13,12 +13,13 @@ RUN apt-get update && apt-get install -y \
13
  && rm -rf /var/lib/apt/lists/* \
14
  && git lfs install
15
 
16
- # Copy all app files
17
  COPY . /app
18
  WORKDIR /app
19
 
20
  # Install Python dependencies
21
  RUN pip install --no-cache-dir -r requirements.txt
22
 
23
- # Command to run your app
24
  CMD ["python", "app.py"]
 
 
13
  && rm -rf /var/lib/apt/lists/* \
14
  && git lfs install
15
 
16
+ # Copy all files into the container
17
  COPY . /app
18
  WORKDIR /app
19
 
20
  # Install Python dependencies
21
  RUN pip install --no-cache-dir -r requirements.txt
22
 
23
+ # Start your app
24
  CMD ["python", "app.py"]
25
+