From ad0ec0f0051a631d4c62028b0f64d5b1cd065a48 Mon Sep 17 00:00:00 2001 From: "Tristan Poland (Trident_For_U)" <34868944+tristanpoland@users.noreply.github.com> Date: Mon, 3 Feb 2025 14:59:29 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d15b2e6..8288962 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,12 +12,13 @@ ARG APP_NAME=horizon-server ################################################################################ # Create a stage for building the application. -FROM rust:${RUST_VERSION}-alpine AS build +FROM rust:${RUST_VERSION}-bullseye AS build ARG APP_NAME WORKDIR /app # Install host build dependencies. -RUN apk add --no-cache clang clang-dev lld musl-dev git sqlite-dev openssl build-base rustup curl +RUN apt-get update +RUN apt-get install libssl-dev -y #RUN ln -sf /usr/lib/libssl.so.3 /usr/lib/libssl.so && \ # ln -sf /usr/lib/libcrypto.so.3 /usr/lib/libcrypto.so