From dcc65c385f518fca2e49ede701e8b3cb997a7392 Mon Sep 17 00:00:00 2001 From: Maxim Biro Date: Sun, 13 Feb 2022 22:36:25 -0500 Subject: [PATCH] Update Windows Docker build deps --- INSTALL.md | 3 ++- other/docker/windows/Dockerfile | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 1213cdd5..465c00d8 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -247,9 +247,10 @@ Build the container image based on the Dockerfile. The following options are ava | `SUPPORT_ARCH_x86_64` | Support building 64-bit toxcore. | "true" or "false" (case sensitive). | true | | `SUPPORT_TEST` | Support running toxcore automated tests. | "true" or "false" (case sensitive). | false | | `CROSS_COMPILE` | Cross-compiling. True for Docker, false for Cygwin. | "true" or "false" (case sensitive). | true | +| `VERSION_MSGPACK` | Version of libmsgpackc to build toxcore with. | Numeric version number. | 4.0.0 | | `VERSION_OPUS` | Version of libopus to build toxcore with. | Numeric version number. | 1.3.1 | | `VERSION_SODIUM` | Version of libsodium to build toxcore with. | Numeric version number. | 1.0.18 | -| `VERSION_VPX` | Version of libvpx to build toxcore with. | Numeric version number. | 1.9.0 | +| `VERSION_VPX` | Version of libvpx to build toxcore with. | Numeric version number. | 1.11.0 | Example of building a container image with options diff --git a/other/docker/windows/Dockerfile b/other/docker/windows/Dockerfile index 7a998365..29633304 100644 --- a/other/docker/windows/Dockerfile +++ b/other/docker/windows/Dockerfile @@ -1,10 +1,10 @@ -FROM debian:buster-slim +FROM debian:bullseye-slim # Build-time environment variables ARG VERSION_MSGPACK=4.0.0 \ VERSION_SODIUM=1.0.18 \ VERSION_OPUS=1.3.1 \ - VERSION_VPX=1.9.0 \ + VERSION_VPX=1.11.0 \ \ SUPPORT_TEST=false \ SUPPORT_ARCH_i686=true \