set to v0.2.12

This commit is contained in:
Astound 2024-03-31 04:53:34 +08:00
parent db510ed703
commit 114d6f3eba
Signed by: kaiser
GPG Key ID: 97504AF0027B1A56

View File

@ -11,14 +11,14 @@ RUN apk update && apk upgrade && apk add --no-cache musl-dev build-base make gcc
ARG APP_DIR="/srv/app"
ARG YT_REPO="https://git.sr.ht/~heckyel/yt-local"
ARG YT_BRANCH="0.2.11"
ARG YT_BRANCH="0.2.12"
RUN mkdir --parents "$APP_DIR"
WORKDIR "$APP_DIR"
RUN git clone --depth=1 "$YT_REPO" --branch "$YT_BRANCH" "$APP_DIR"
RUN git show --oneline --no-patch
RUN git clone --depth=1 "$YT_REPO" --branch "$YT_BRANCH" "$APP_DIR" && \
git show --oneline --no-patch
RUN pip install --upgrade pip && \
pip install --no-cache-dir --prefix=/install wheel gunicorn
RUN pip install --no-cache-dir --prefix=/install -r requirements.txt