Update Windows Docker build deps

This commit is contained in:
Maxim Biro 2022-02-13 22:36:25 -05:00
parent 3baf169da1
commit dcc65c385f
No known key found for this signature in database
GPG Key ID: AB3AD9896472BFA4
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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 \