diff options
author | Astound <kirito@disroot.org> | 2024-03-31 04:53:34 +0800 |
---|---|---|
committer | Astound <kirito@disroot.org> | 2024-03-31 04:53:34 +0800 |
commit | 114d6f3ebaa11296af310acaa6def80126cd91c6 (patch) | |
tree | 319214cac0df96d91ab8b68f9f2d984a54f10d9a /core | |
parent | db510ed70351d76bf7deaf5466905f42332c6c37 (diff) | |
download | yt-local-docker-114d6f3ebaa11296af310acaa6def80126cd91c6.tar.lz yt-local-docker-114d6f3ebaa11296af310acaa6def80126cd91c6.tar.xz yt-local-docker-114d6f3ebaa11296af310acaa6def80126cd91c6.zip |
set to v0.2.12
Diffstat (limited to 'core')
-rw-r--r-- | core/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Dockerfile b/core/Dockerfile index 00dc78c..30b01c9 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -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 |