camera-motion-detect/Dockerfile
Lauri Võsandi 53ee10b92a
Some checks failed
continuous-integration/drone Build is failing
Minimize Docker image
2022-03-09 21:30:45 +02:00

31 lines
631 B
Docker

FROM ubuntu
WORKDIR /app
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
build-essential \
libjpeg-dev \
libpython3-dev \
python3-gevent \
python3-numpy \
python3-opencv \
python3-pip \
&& pip3 install \
aioboto3 \
aiohttp \
jpeg2dct \
motor \
prometheus_client \
sanic==21.6.2 \
sanic_prometheus \
&& apt-get remove -y \
build-essential \
libjpeg-dev \
libpython3-dev \
&& apt-get autoremove -y \
&& apt-get clean
COPY camdetect.py /app
ENTRYPOINT /app/camdetect.py
EXPOSE 5000
ENV PYTHONUNBUFFERED=1