Browse Source

create_dockerfile.sh: add bookworm and jammy

Victor Seva 2 years ago
parent
commit
8c582a6803
1 changed files with 2 additions and 2 deletions
  1. 2 2
      create_dockerfile.sh

+ 2 - 2
create_dockerfile.sh

@@ -47,8 +47,8 @@ version=${2:-5.0.3}
 DATE=$(date +"%Y-%m-%d")
 
 case ${dist} in
-  focal|bionic|xenial|trusty|precise) base=ubuntu ;;
-  squeeze|wheezy|jessie|stretch|buster|bullseye) base=debian ;;
+  jammy|focal|bionic|xenial|trusty|precise) base=ubuntu ;;
+  squeeze|wheezy|jessie|stretch|buster|bullseye|bookworm) base=debian ;;
   *)
     echo "ERROR: no ${dist} base supported"
     exit 1