-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
33 lines (30 loc) · 805 Bytes
/
Dockerfile
File metadata and controls
33 lines (30 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM python:3.12-slim-bookworm
RUN apt-get -y update && apt-get install -y --fix-missing \
build-essential \
cmake \
gfortran \
git \
curl \
graphicsmagick \
libgraphicsmagick1-dev \
libatlas-base-dev \
libavcodec-dev \
libavformat-dev \
libgtk2.0-dev \
libjpeg-dev \
liblapack-dev \
libswscale-dev \
pkg-config \
software-properties-common \
zip \
&& apt-get clean && rm -rf /tmp/* /var/tmp/*
RUN pip install dlib==19.24.6
#RUN cd ~ \
# && mkdir -p dlib \
# && git clone -b "v19.9" --single-branch https://github.com/davisking/dlib.git dlib/ \
# && cd dlib/ \
# && python -m venv venv \
# && pip install build \
# && python -m build --wheel \
# \
#&& python3 setup.py install --yes USE_AVX_INSTRUCTIONS