2020-09-28 15:43:04 +03:00
|
|
|
ARG ARCH=amd64
|
2021-01-17 05:03:42 +03:00
|
|
|
ARG WHEELS_VERSION
|
2020-12-19 19:50:53 +03:00
|
|
|
ARG FFMPEG_VERSION
|
2021-05-18 08:52:08 +03:00
|
|
|
ARG NGINX_VERSION
|
2021-01-17 05:03:42 +03:00
|
|
|
FROM blakeblackshear/frigate-wheels:${WHEELS_VERSION}-${ARCH} as wheels
|
2020-12-19 19:50:53 +03:00
|
|
|
FROM blakeblackshear/frigate-ffmpeg:${FFMPEG_VERSION}-${ARCH} as ffmpeg
|
2021-05-18 08:52:08 +03:00
|
|
|
FROM blakeblackshear/frigate-nginx:${NGINX_VERSION} as nginx
|
2021-01-15 16:53:44 +03:00
|
|
|
FROM frigate-web as web
|
2020-09-28 15:43:04 +03:00
|
|
|
|
2020-09-22 05:02:00 +03:00
|
|
|
FROM ubuntu:20.04
|
2020-01-06 02:43:14 +03:00
|
|
|
LABEL maintainer "blakeb@blakeshome.com"
|
2019-06-02 15:29:50 +03:00
|
|
|
|
2021-03-03 16:33:50 +03:00
|
|
|
# s6-overlay
|
|
|
|
|
ADD https://github.com/just-containers/s6-overlay/releases/download/v2.2.0.1/s6-overlay-amd64-installer /tmp/
|
|
|
|
|
RUN chmod +x /tmp/s6-overlay-amd64-installer && /tmp/s6-overlay-amd64-installer /
|
|
|
|
|
|
2020-10-08 00:25:54 +03:00
|
|
|
COPY --from=ffmpeg /usr/local /usr/local/
|
|
|
|
|
|
2020-09-28 15:43:04 +03:00
|
|
|
COPY --from=wheels /wheels/. /wheels/
|
|
|
|
|
|
2020-10-24 19:40:44 +03:00
|
|
|
ENV FLASK_ENV=development
|
2020-12-05 17:39:45 +03:00
|
|
|
# ENV FONTCONFIG_PATH=/etc/fonts
|
2020-01-06 02:43:14 +03:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
2019-05-27 18:17:57 +03:00
|
|
|
# Install packages for apt repo
|
2020-10-25 20:15:50 +03:00
|
|
|
RUN apt-get -qq update \
|
|
|
|
|
&& apt-get upgrade -y \
|
2021-05-18 08:52:08 +03:00
|
|
|
&& apt-get -qq install --no-install-recommends -y gnupg wget unzip tzdata libxml2 \
|
|
|
|
|
&& apt-get -qq install --no-install-recommends -y python3-pip \
|
2020-09-28 15:43:04 +03:00
|
|
|
&& pip3 install -U /wheels/*.whl \
|
2020-09-30 01:09:58 +03:00
|
|
|
&& APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=DontWarn apt-key adv --fetch-keys https://packages.cloud.google.com/apt/doc/apt-key.gpg \
|
2020-11-14 16:41:08 +03:00
|
|
|
&& echo "deb https://packages.cloud.google.com/apt coral-edgetpu-stable main" > /etc/apt/sources.list.d/coral-edgetpu.list \
|
2020-09-30 01:09:58 +03:00
|
|
|
&& echo "libedgetpu1-max libedgetpu/accepted-eula select true" | debconf-set-selections \
|
2021-05-18 08:52:08 +03:00
|
|
|
&& apt-get -qq update && apt-get -qq install --no-install-recommends -y libedgetpu1-max=15.0 \
|
2020-09-28 15:43:04 +03:00
|
|
|
&& rm -rf /var/lib/apt/lists/* /wheels \
|
2020-01-06 02:43:14 +03:00
|
|
|
&& (apt-get autoremove -y; apt-get autoclean -y)
|
|
|
|
|
|
2020-11-02 14:44:16 +03:00
|
|
|
RUN pip3 install \
|
2020-12-24 16:47:27 +03:00
|
|
|
peewee_migrate \
|
2020-12-03 17:00:23 +03:00
|
|
|
zeroconf \
|
2021-02-13 17:09:44 +03:00
|
|
|
voluptuous\
|
2021-05-30 18:31:25 +03:00
|
|
|
ws4py
|
2020-11-02 14:44:16 +03:00
|
|
|
|
2021-05-18 08:52:08 +03:00
|
|
|
COPY --from=nginx /usr/local/nginx/ /usr/local/nginx/
|
2020-11-02 14:44:16 +03:00
|
|
|
|
2020-02-18 14:55:06 +03:00
|
|
|
# get model and labels
|
2020-09-07 20:17:42 +03:00
|
|
|
COPY labelmap.txt /labelmap.txt
|
2020-12-09 16:18:53 +03:00
|
|
|
RUN wget -q https://github.com/google-coral/test_data/raw/master/ssdlite_mobiledet_coco_qat_postprocess_edgetpu.tflite -O /edgetpu_model.tflite
|
|
|
|
|
RUN wget -q https://github.com/google-coral/test_data/raw/master/ssdlite_mobiledet_coco_qat_postprocess.tflite -O /cpu_model.tflite
|
2020-07-02 16:43:33 +03:00
|
|
|
|
2019-02-28 15:49:27 +03:00
|
|
|
WORKDIR /opt/frigate/
|
|
|
|
|
ADD frigate frigate/
|
2021-01-13 20:58:38 +03:00
|
|
|
ADD migrations migrations/
|
2021-01-15 16:53:44 +03:00
|
|
|
|
|
|
|
|
COPY --from=web /opt/frigate/build web/
|
2019-01-26 17:02:59 +03:00
|
|
|
|
2021-03-03 16:33:50 +03:00
|
|
|
COPY docker/rootfs/ /
|
2020-11-02 14:44:16 +03:00
|
|
|
|
2020-11-28 16:58:27 +03:00
|
|
|
EXPOSE 5000
|
|
|
|
|
EXPOSE 1935
|
|
|
|
|
|
2021-03-03 16:33:50 +03:00
|
|
|
ENTRYPOINT ["/init"]
|
|
|
|
|
|
|
|
|
|
CMD ["python3", "-u", "-m", "frigate"]
|