rishab1090 commited on
Commit
c1291fb
·
verified ·
1 Parent(s): 0ba025a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -19,9 +19,12 @@ RUN apt-get update && apt-get install -y \
19
 
20
  # Copy everything
21
  COPY . .
 
 
 
22
 
23
  # Set model file permissions at build time
24
- RUN chmod 644 models/2.keras
25
 
26
  # Install Python dependencies
27
  RUN pip install --no-cache-dir --upgrade pip \
 
19
 
20
  # Copy everything
21
  COPY . .
22
+ WORKDIR /app
23
+ COPY 2.keras /app/
24
+ RUN chmod 644 /app/2.keras
25
 
26
  # Set model file permissions at build time
27
+
28
 
29
  # Install Python dependencies
30
  RUN pip install --no-cache-dir --upgrade pip \