4 lines
182 B
Docker
4 lines
182 B
Docker
# A docker image with system-level dependencies installed already
|
|
FROM python:3.11-bookworm
|
|
RUN apt-get -yq update
|
|
RUN apt-get -yq install python3-opencv python3-numpy python3-scipy
|