This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 \ |