Hello,
I have a dot net / Visual studio application who access to a plugged hardware on USB.
It work if i run it on my PC, but if i dockerise it on the same PC, the application don’t see the hardware plugged in USB by driver.
My Dockerfile:
FROM mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019
ARG source
WORKDIR /inetpub/wwwroot
COPY ${source:-obj/Docker/publish} .
How can i expose my device ?