Skip to content

Instantly share code, notes, and snippets.

View mapo80's full-sized avatar

Matteo Polito mapo80

  • 09:32 (UTC +02:00)
View GitHub Profile
@mapo80
mapo80 / Dockefile
Created March 3, 2023 16:28
Docker file to compile opencvsharp do Debian
FROM mcr.microsoft.com/dotnet/aspnet:6.0 as builder
ENV DEBIAN_FRONTEND=noninteractive
ENV OPENCV_VERSION=4.7.0
WORKDIR /
# Install opencv dependencies
RUN apt-get update && apt-get -y install --no-install-recommends \
apt-transport-https \