aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-11-10 10:03:21 -0700
committercrobibero <cody@robibe.ro>2020-11-10 10:03:21 -0700
commit9b7c5cddae73124fcb7b89cb033ac6ac817dcf75 (patch)
tree8b8b8dcc074caa1f6cfb16d0bba76c40dbf37909 /Dockerfile
parent83629ab6f24ee1a8991dae2b8a55d24c93832ad5 (diff)
Update build ci, dockerfiles to .Net5.0
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 69af9b77b..639a1196c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-ARG DOTNET_VERSION=3.1
+ARG DOTNET_VERSION=5.0
FROM node:alpine as web-builder
ARG JELLYFIN_WEB_VERSION=master
@@ -8,7 +8,7 @@ RUN apk add curl git zlib zlib-dev autoconf g++ make libpng-dev gifsicle alpine-
&& yarn install \
&& mv dist /dist
-FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster as builder
+FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_VERSION}-buster as builder
WORKDIR /repo
COPY . .
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1