From c18f59050ccdd5baaa613720e3c0bbc9fabaa9d6 Mon Sep 17 00:00:00 2001 From: shibao Date: Fri, 23 Feb 2024 21:53:25 -0500 Subject: [PATCH] fix missing ssl and crypto packages --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cfa9b99..e92a036 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN mix do compile, release FROM alpine:latest AS app RUN apk upgrade --no-cache && \ - apk add --no-cache bash openssl libssl1.1 libcrypto1.1 libgcc libstdc++ ncurses-libs + apk add --no-cache bash openssl libssl3 libcrypto3 libgcc libstdc++ ncurses-libs WORKDIR /app