HerbertAIHug commited on
Commit
9145a24
·
1 Parent(s): c5e1ea5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -11,7 +11,8 @@ COPY requirements.txt .
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  # Copy the LR_pipeline.joblib files to the container
14
- COPY pickle .
 
15
 
16
  # Copy the current directory contents into the container at /app
17
  COPY . /app
 
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  # Copy the LR_pipeline.joblib files to the container
14
+ COPY model.pkl .
15
+ COPY scaler.pkl .
16
 
17
  # Copy the current directory contents into the container at /app
18
  COPY . /app