WebashalarForML commited on
Commit
bee4773
·
verified ·
1 Parent(s): 48c5c63

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -17,9 +17,11 @@ COPY Model /app/
17
  # Upgrade pip
18
  RUN pip install --upgrade pip
19
 
 
 
20
  # (Optional) Install any necessary system dependencies
21
- #RUN apt-get update && apt-get install -y gcc libjpeg-dev zlib1g-dev && \
22
- # rm -rf /var/lib/apt/lists/*
23
 
24
  # Install dependencies
25
  RUN pip install --no-cache-dir -r requirements.txt
 
17
  # Upgrade pip
18
  RUN pip install --upgrade pip
19
 
20
+ RUN apt-get update && apt-get install -y libgomp1
21
+
22
  # (Optional) Install any necessary system dependencies
23
+ RUN apt-get update && apt-get install -y gcc libjpeg-dev zlib1g-dev && \
24
+ rm -rf /var/lib/apt/lists/*
25
 
26
  # Install dependencies
27
  RUN pip install --no-cache-dir -r requirements.txt