wyzely-detect/Dockerfile

42 lines
1.1 KiB
Docker
Raw Normal View History

2022-12-17 23:58:50 +00:00
FROM python:3.10-bullseye
# Install Dlib (for face_recognition)
RUN apt-get -y update && apt-get install -y --fix-missing \
build-essential \
cmake \
gfortran \
git \
wget \
curl \
graphicsmagick \
libgraphicsmagick1-dev \
libatlas-base-dev \
libavcodec-dev \
libavformat-dev \
libgtk2.0-dev \
libjpeg-dev \
liblapack-dev \
libswscale-dev \
pkg-config \
python3-dev \
python3-numpy \
software-properties-common \
zip
RUN apt-get clean
RUN rm -rf /tmp/* /var/tmp/*
ENV CFLAGS=-static
2022-12-18 03:46:51 +00:00
# Install dos2unix
RUN apt-get install -y dos2unix
2022-12-17 23:58:50 +00:00
# Upgrade pip
RUN pip3 install --upgrade pip
# Copy directory to container
2022-12-17 22:36:21 +00:00
WORKDIR /app
COPY . ./
2022-12-18 03:46:51 +00:00
# Run dos2unix on all files in /app
RUN dos2unix /app/*
2022-12-17 23:58:50 +00:00
# Install from requirements.txt
RUN pip3 install -r requirements.txt
2022-12-18 03:17:29 +00:00
# Install wait-for-it so this can easily be used with docker-compose
# Example: command: ["./wait-for-it.sh", "bridge:8554", "--", "python", "main.py"]
RUN wget https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh && chmod +x wait-for-it.sh && mv wait-for-it.sh /usr/local/bin
2022-12-18 03:41:25 +00:00
CMD ["python", "main.py"]