Add OpenSSL build dependencies to Dockerfile
Fixes build failure caused by missing openssl-dev and openssl-libs-static packages needed for compiling tokio-tungstenite with native-tls feature
This commit is contained in:
parent
4269b246a7
commit
677c948f31
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ ARG TARGETPLATFORM
|
|||
WORKDIR /app
|
||||
|
||||
# Install build dependencies
|
||||
RUN apk add --no-cache musl-dev protobuf-dev
|
||||
RUN apk add --no-cache musl-dev protobuf-dev openssl-dev openssl-libs-static
|
||||
|
||||
# Determine Rust target based on platform and add it
|
||||
RUN case "$TARGETPLATFORM" in \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue