From 1720929d4220af867860e7fdf92eddc331f883f8 Mon Sep 17 00:00:00 2001 From: giangndm <45644921+giangndm@users.noreply.github.com> Date: Mon, 18 Nov 2024 10:23:43 +0700 Subject: [PATCH] fix docker build (#13) * fix: docker build missing openssl * fix: docker build missing openssl and ca-certificates --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index f72e3ff..21fe92d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,7 @@ RUN case $TARGETPLATFORM in \ FROM ubuntu:22.04 +RUN apt update && apt install -y ca-certificates openssl && apt clean && rm -rf /var/lib/apt/lists/* COPY --from=base /atm0s-cloud-admin-panel /atm0s-cloud-admin-panel ENTRYPOINT ["/atm0s-cloud-admin-panel"] \ No newline at end of file