Explorar o código

Add missing trailing slashes

Mark Monteiro %!s(int64=5) %!d(string=hai) anos
pai
achega
589958d13f
Modificáronse 3 ficheiros con 3 adicións e 3 borrados
  1. 1 1
      Dockerfile
  2. 1 1
      Dockerfile.arm
  3. 1 1
      Dockerfile.arm64

+ 1 - 1
Dockerfile

@@ -6,7 +6,7 @@ ARG JELLYFIN_WEB_VERSION=master
 RUN apk add curl git \
  && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
  && cd jellyfin-web-* \
- && yarn install
+ && yarn install \
  && mv dist /dist
 
 FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION}-buster as builder

+ 1 - 1
Dockerfile.arm

@@ -10,7 +10,7 @@ ARG JELLYFIN_WEB_VERSION=master
 RUN apk add curl git \
  && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
  && cd jellyfin-web-* \
- && yarn install
+ && yarn install \
  && mv dist /dist
 
 

+ 1 - 1
Dockerfile.arm64

@@ -10,7 +10,7 @@ ARG JELLYFIN_WEB_VERSION=master
 RUN apk add curl git \
  && curl -L https://github.com/jellyfin/jellyfin-web/archive/${JELLYFIN_WEB_VERSION}.tar.gz | tar zxf - \
  && cd jellyfin-web-* \
- && yarn install
+ && yarn install \
  && mv dist /dist