mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-13 03:13:51 +00:00
9 lines
311 B
Docker
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"]
|