Skip to content

Instantly share code, notes, and snippets.

@st235
Created February 10, 2023 18:04
Show Gist options
  • Save st235/dac543309c7d997e980268200a685508 to your computer and use it in GitHub Desktop.
Save st235/dac543309c7d997e980268200a685508 to your computer and use it in GitHub Desktop.
Docker file for opencv and tflite_runtime
FROM python:3.9-slim-bullseye
RUN apt-get update \
&& apt-get install ffmpeg libsm6 libxext6 -y
RUN pip3 install numpy==1.24.2 opencv-contrib-python==4.7.0.68 streamlit==1.17.0 tflite-runtime==2.11.0
RUN pip3 install black==23.1.0 pylint==2.15.10 pre-commit==3.0.2 pytest==7.2.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment