noumanjavaid commited on
Commit
3d18608
·
verified ·
1 Parent(s): e15e01e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -3,6 +3,7 @@ FROM python:3.9-slim
3
  WORKDIR /app
4
 
5
  # Install system dependencies
 
6
  RUN apt-get update && apt-get install -y \
7
  build-essential \
8
  curl \
@@ -17,7 +18,6 @@ RUN apt-get update && apt-get install -y \
17
 
18
  COPY requirements.txt ./
19
  COPY src/ ./src/
20
- COPY .streamlit ./.streamlit
21
 
22
  # It's good practice to upgrade pip first
23
  RUN pip3 install --upgrade pip
 
3
  WORKDIR /app
4
 
5
  # Install system dependencies
6
+
7
  RUN apt-get update && apt-get install -y \
8
  build-essential \
9
  curl \
 
18
 
19
  COPY requirements.txt ./
20
  COPY src/ ./src/
 
21
 
22
  # It's good practice to upgrade pip first
23
  RUN pip3 install --upgrade pip