dsid271 commited on
Commit
b20877c
·
verified ·
1 Parent(s): 577fc98

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -13
Dockerfile CHANGED
@@ -7,19 +7,6 @@ WORKDIR /app
7
  # Copy the current directory contents into the container at /app
8
  COPY . /app
9
 
10
- # Install system dependencies for OpenCV and other packages
11
- RUN apt-get update && apt-get install -y --no-install-recommends \
12
- build-essential \
13
- libgl1-mesa-glx \
14
- libxext6 \
15
- libxrender1 \
16
- libfontconfig1 \
17
- libsm6 \
18
- libice6 \
19
- libopencv-dev \
20
- python3-opencv && \
21
- rm -rf /var/lib/apt/lists/*
22
-
23
  # Install any needed packages specified in requirements.txt
24
  RUN pip install --no-cache-dir -r requirements.txt
25
 
 
7
  # Copy the current directory contents into the container at /app
8
  COPY . /app
9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  # Install any needed packages specified in requirements.txt
11
  RUN pip install --no-cache-dir -r requirements.txt
12