From c3eabb70971594003ef7dc1359ac3c166d7cc125 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Tue, 13 Oct 2020 21:58:07 -0700 Subject: [PATCH] Install cli tool --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 764c6ff..73b2faf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,11 +15,11 @@ ARG VERSION=2.3.0 RUN curl -sL https://github.com/Chocobozzz/PeerTube/releases/download/v${VERSION}/peertube-v${VERSION}.tar.xz | tar --strip-components 1 -Jxvf - RUN yarn install --production --pure-lockfile -# dbname branch -# ARG VERSION=e7fe135b5a5666147256efa11d15474d761c37d4 -# RUN curl -L https://github.com/cloudron-io/PeerTube/archive/${VERSION}.tar.gz | tar -zxvf - --strip-components=1 -# -# RUN yarn install && npm run build +RUN mkdir /app/code/cli && \ + curl -L https://github.com/Chocobozzz/PeerTube/archive/v${VERSION}.tar.gz | tar -zxvf - --strip-components=1 -C /app/code/cli && \ + cd /app/code/cli && \ + NOCLIENT=1 yarn install --pure-lockfile && \ + npm run setup:cli # the json is created and managed by web ui. it overrides the yaml file (https://github.com/lorenwest/node-config/wiki/Configuration-Files) RUN ln -sf /app/data/production.yaml /app/code/server/config/production.yaml && \