am-om commited on
Commit
897621a
·
1 Parent(s): 32bcc60

dekh le bro

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -11,7 +11,10 @@ RUN apt-get update && apt-get install -y libgl1-mesa-glx
11
 
12
  # 4. Copy the requirements file and install Python dependencies.
13
  COPY ./requirements.txt /code/requirements.txt
14
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
 
 
 
15
 
16
  # 5. Copy all your application files (backend_app.py, best.pt) into the container.
17
  COPY . /code/
 
11
 
12
  # 4. Copy the requirements file and install Python dependencies.
13
  COPY ./requirements.txt /code/requirements.txt
14
+ RUN apt-get update && apt-get install -y \
15
+ libgl1 \
16
+ libglib2.0-0 \
17
+ && rm -rf /var/lib/apt/lists/*
18
 
19
  # 5. Copy all your application files (backend_app.py, best.pt) into the container.
20
  COPY . /code/