mirror of
https://github.com/yummy4friends/y4f.git
synced 2024-11-10 10:07:23 +01:00
6 lines
149 B
Docker
6 lines
149 B
Docker
|
FROM mcr.microsoft.com/dotnet/sdk:7.0
|
||
|
WORKDIR /App
|
||
|
COPY . ./
|
||
|
RUN dotnet restore
|
||
|
EXPOSE 5248
|
||
|
CMD /usr/bin/dotnet run --project /App/src/y4f/y4f.csproj
|