blob: 578c65a787985a16876e71f7333a4bc058df45e2 (
plain)
1
2
3
4
5
6
7
8
|
FROM mcr.microsoft.com/dotnet/sdk:7.0
WORKDIR /app
RUN apt-get update \
&& apt-get install unzip \
&& curl -sSL https://aka.ms/getvsdbgsh | /bin/sh /dev/stdin -v latest -l /vsdbg
CMD ["dotnet", "watch", "--non-interactive", "--no-hot-reload", "--project", "./Elements.Backend"]
|