Nasim435 commited on
Commit
a89be30
·
verified ·
1 Parent(s): b18b8dc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -5
Dockerfile CHANGED
@@ -8,11 +8,7 @@ RUN apt-get update && apt-get install -y \
8
  git \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
- # copy everything needed
12
- COPY requirements.txt ./
13
- COPY src/ ./src/
14
- COPY val.csv ./val.csv
15
- COPY model_trainer/ ./model_trainer/
16
 
17
  RUN pip3 install -r requirements.txt
18
 
 
8
  git \
9
  && rm -rf /var/lib/apt/lists/*
10
 
11
+ COPY . .
 
 
 
 
12
 
13
  RUN pip3 install -r requirements.txt
14