1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/templates/docker/cs/Dockerfile

6 lines
118 B
Docker
Raw Normal View History

2021-06-24 22:04:28 +02:00
FROM mcr.microsoft.com/dotnet/sdk:5.0
WORKDIR /usr/src/app
COPY ./ ./
RUN dotnet restore
ENTRYPOINT ["dotnet", "run"]