feat(infra): add LmxFakeProxy Dockerfile and docker-compose service

This commit is contained in:
Joseph Doherty
2026-03-19 11:26:19 -04:00
parent aef70bec7f
commit edb2ab98cb
3 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /src
COPY LmxFakeProxy.csproj .
RUN dotnet restore
COPY . .
RUN dotnet publish -c Release -o /app
FROM mcr.microsoft.com/dotnet/aspnet:10.0
WORKDIR /app
COPY --from=build /app .
EXPOSE 50051
ENTRYPOINT ["dotnet", "LmxFakeProxy.dll"]