Files
S.P.L.U.R.T-Station-13/tools/LinuxOneShot/SetupProgram/Dockerfile
2021-01-31 10:47:25 +08:00

9 lines
311 B
Docker

#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
# THIS SHOULD NOT BE USED TO CREATE THE PRODUCTION BUILD IT'S FOR DEBUGGING ONLY
FROM mcr.microsoft.com/dotnet/core/sdk:3.1
WORKDIR /app
COPY . .
ENTRYPOINT ["dotnet", "run"]