5 lines
209 B
Docker
5 lines
209 B
Docker
FROM debian:buster-slim
|
|
RUN apt-get update && apt-get -y --no-install-recommends install python3 python3-opencv
|
|
RUN apt-get -y --no-install-recommends install python3-prometheus-client
|
|
ADD process.py /usr/src
|