From 01e12adf9a70288f488335259634190a119043a3 Mon Sep 17 00:00:00 2001 From: shibao Date: Sun, 27 Nov 2022 10:48:28 -0500 Subject: [PATCH] attempt to fix libcrypto error --- .drone.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index bc42f5d..dd0dbb9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -38,7 +38,7 @@ steps: repo: shibaobun/memex purge: true compress: true - platforms: linux/amd64,linux/arm/v7 + platforms: linux/amd64 username: from_secret: docker_username password: @@ -55,7 +55,7 @@ steps: repo: shibaobun/memex purge: true compress: true - platforms: linux/amd64,linux/arm/v7 + platforms: linux/amd64 username: from_secret: docker_username password: diff --git a/Dockerfile b/Dockerfile index 87c7610..237e2b3 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 libgcc libstdc++ ncurses-libs + apk add --no-cache bash openssl-dev libgcc libstdc++ ncurses-libs WORKDIR /app