From a407beaa45e140f492f9cc5b3c5cdd3c7fe2ad69 Mon Sep 17 00:00:00 2001 From: Matthias Schaff Date: Wed, 1 Oct 2025 10:22:57 +0200 Subject: [PATCH] chore: update alpine version to 3.20 and ensure openssl-dev is included (#1608) fixes devcontainer build issue with alpine 3.19, which is not available anymore Co-authored-by: Matthias Schaff --- .devcontainer/Dockerfile.alpine | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile.alpine b/.devcontainer/Dockerfile.alpine index 2d949ad6..08e0f07d 100644 --- a/.devcontainer/Dockerfile.alpine +++ b/.devcontainer/Dockerfile.alpine @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1 -ARG alpine_version=alpine3.19 +ARG alpine_version=alpine3.20 ARG rust_version=1.85.0 FROM rust:${rust_version}-${alpine_version} @@ -15,6 +15,7 @@ RUN apk add --no-cache \ pkgconf \ musl-dev \ # developer dependencies + openssl-dev \ libunwind-dev \ pulseaudio-dev \ portaudio-dev \