Merge pull request #5580 from abandonrule/main

fix(docker): bump Docker CLI to a patched release
This commit is contained in:
Boody
2026-07-18 05:13:03 +03:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# /var/run/docker.sock mount). The Debian `docker.io` package ships # /var/run/docker.sock mount). The Debian `docker.io` package ships
# dockerd but not the client binary on slim, so grab the static client # dockerd but not the client binary on slim, so grab the static client
# tarball from download.docker.com instead. # tarball from download.docker.com instead.
ARG DOCKER_CLI_VERSION=27.5.1 ARG DOCKER_CLI_VERSION=29.6.2
RUN ARCH="$(dpkg --print-architecture)" \ RUN ARCH="$(dpkg --print-architecture)" \
&& case "$ARCH" in \ && case "$ARCH" in \
amd64) DARCH=x86_64 ;; \ amd64) DARCH=x86_64 ;; \
+1 -1
View File
@@ -4,7 +4,7 @@ import os
from src.runtime_paths import get_app_root, get_default_data_dir from src.runtime_paths import get_app_root, get_default_data_dir
APP_VERSION = "1.0.1" APP_VERSION = "1.0.2"
# Base paths # Base paths
BASE_DIR = os.path.join(get_app_root(), "") BASE_DIR = os.path.join(get_app_root(), "")