We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c01bcc7 commit e16585eCopy full SHA for e16585e
1 file changed
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM microsoft/dotnet:1.1-sdk AS build-env
+FROM microsoft/dotnet:2.0-sdk AS build-env
2
WORKDIR /app
3
4
# copy csproj and restore as distinct layers
@@ -10,7 +10,7 @@ COPY RadarrAPI/* ./
10
RUN dotnet publish -c Release -o out
11
12
# build runtime image
13
-FROM microsoft/dotnet:1.1-runtime
+FROM microsoft/dotnet:2.0-runtime
14
15
COPY --from=build-env /app/out ./
16
ENTRYPOINT ["dotnet", "RadarrAPI.dll"]
0 commit comments