From 2463b91051cdf2c03ee2aebf724df4cedcc0eb73 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Sun, 27 Oct 2024 16:46:57 -0700 Subject: [PATCH] Remove unneeded build steps from Alpine --- .docker/Dockerfile.alpine | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.docker/Dockerfile.alpine b/.docker/Dockerfile.alpine index 0befb9f9..cdecf87a 100644 --- a/.docker/Dockerfile.alpine +++ b/.docker/Dockerfile.alpine @@ -23,25 +23,8 @@ RUN apk add --no-cache \ ca-certificates \ git \ python3-dev \ - py3-pip \ curl -# On arm64, we need to build cffi from source. -ARG TARGETPLATFORM - -RUN if [ "${TARGETPLATFORM}" == "linux/arm64" ]; then \ - apk add --no-cache \ - build-base \ - autoconf \ - automake \ - libtool \ - zlib-dev \ - libffi-dev \ - cairo-dev \ - pkgconfig \ - ; \ - fi - COPY . /app WORKDIR /app