diff options
author | Astound <kirito@disroot.org> | 2024-07-19 10:43:11 +0800 |
---|---|---|
committer | Astound <kirito@disroot.org> | 2024-07-19 10:43:11 +0800 |
commit | 868178b43cb20d72faa39bf71da1449e71654765 (patch) | |
tree | b3754d4f42a6e15b95e30b561e9d306c7963e426 /core | |
parent | 109c3f1933107995dd110fce3db3fcf6d119ae98 (diff) | |
download | yt-local-docker-868178b43cb20d72faa39bf71da1449e71654765.tar.lz yt-local-docker-868178b43cb20d72faa39bf71da1449e71654765.tar.xz yt-local-docker-868178b43cb20d72faa39bf71da1449e71654765.zip |
minor fix
Diffstat (limited to 'core')
-rw-r--r-- | core/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Dockerfile b/core/Dockerfile index aa410ed..e51b177 100644 --- a/core/Dockerfile +++ b/core/Dockerfile @@ -15,7 +15,7 @@ apk add --no-cache musl-dev build-base make gcc g++ libffi-dev git patch && \ mkdir -p "$APP_DIR" && \ git clone --depth=1 "$YT_REPO" --branch "$YT_BRANCH" "$APP_DIR" && \ git -C "$APP_DIR" show --oneline --no-patch && \ -pip install --upgrade pip && \ +pip install --no-cache-dir --upgrade pip && \ pip install --no-cache-dir --prefix=/install wheel gunicorn && \ pip install --no-cache-dir --prefix=/install -r "$APP_DIR/requirements.txt" |