fjenett commited on
Commit
e720d0c
·
1 Parent(s): bdb7d38

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -10
Dockerfile CHANGED
@@ -1,27 +1,27 @@
1
- FROM python:3.9
2
 
3
- RUN apt-get update && apt -y install curl gnupg libgl1-mesa-glx libglib2.0-0 && rm -rf /var/lib/apt/lists/*
4
 
5
  RUN apt-get update && apt-get install -y --no-install-recommends \
6
  bzip2 \
7
  g++ \
8
  git \
9
- graphviz \
10
- libgl1-mesa-glx \
11
- libhdf5-dev \
12
- openmpi-bin \
13
  wget \
14
- python3-tk && \
15
  rm -rf /var/lib/apt/lists/*
16
 
17
  # RUN echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" | tee /etc/apt/sources.list.d/coral-edgetpu.list
18
  # RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - && apt-get update && apt-get install -y python3-tflite-runtime && rm -rf /var/lib/apt/lists/*
19
 
20
- RUN apt-get update && apt-get install -y python3-opencv
21
 
22
- RUN pip install opencv-python mediapipe
23
 
24
- RUN ls -1al /usr/local/include/python3.9
25
 
26
  RUN pip install Cython==0.29.36
27
 
 
1
+ # FROM python:3.9
2
 
3
+ # RUN apt-get update && apt -y install curl gnupg libgl1-mesa-glx libglib2.0-0 && rm -rf /var/lib/apt/lists/*
4
 
5
  RUN apt-get update && apt-get install -y --no-install-recommends \
6
  bzip2 \
7
  g++ \
8
  git \
9
+ # graphviz \
10
+ # libgl1-mesa-glx \
11
+ # libhdf5-dev \
12
+ # openmpi-bin \
13
  wget \
14
+ # python3-tk && \
15
  rm -rf /var/lib/apt/lists/*
16
 
17
  # RUN echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" | tee /etc/apt/sources.list.d/coral-edgetpu.list
18
  # RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - && apt-get update && apt-get install -y python3-tflite-runtime && rm -rf /var/lib/apt/lists/*
19
 
20
+ # RUN apt-get update && apt-get install -y python3-opencv
21
 
22
+ # RUN pip install opencv-python mediapipe
23
 
24
+ # RUN ls -1al /usr/local/include/python3.9
25
 
26
  RUN pip install Cython==0.29.36
27