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 && \