BhavyaSoni21 commited on
Commit
6229008
·
verified ·
1 Parent(s): f1f4ccb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -3
Dockerfile CHANGED
@@ -1,9 +1,18 @@
1
- FROM python:3.10
2
 
3
  WORKDIR /app
4
 
5
- COPY . .
 
 
6
 
7
- RUN pip install -r requirements.txt
 
 
 
 
 
 
 
8
 
9
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
1
+ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
5
+ RUN apt-get update && apt-get install -y \
6
+ build-essential \
7
+ && rm -rf /var/lib/apt/lists/*
8
 
9
+ COPY requirements.txt .
10
+ RUN pip install --no-cache-dir -r requirements.txt
11
+
12
+ COPY app.py .
13
+ COPY trained_lightgbm_model.pkl .
14
+ COPY label_encoder.pkl .
15
+
16
+ EXPOSE 7860
17
 
18
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]