ayad33 commited on
Commit
fd3cca0
·
verified ·
1 Parent(s): e7b9924

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -2,7 +2,7 @@ FROM python:3.11-slim-bullseye
2
 
3
  WORKDIR /backend
4
 
5
- COPY backend/requirements.txt .
6
 
7
  RUN apt-get -y update && pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt && apt-get -y install libgl1 libglib2.0-0
8
 
 
2
 
3
  WORKDIR /backend
4
 
5
+ COPY requirements.txt .
6
 
7
  RUN apt-get -y update && pip install --upgrade pip && pip install --no-cache-dir -r requirements.txt && apt-get -y install libgl1 libglib2.0-0
8