From 117b4058d3fdfc711f96489b381ba3b72d89893f Mon Sep 17 00:00:00 2001 From: Ike Johnson-Woods Date: Wed, 14 Aug 2024 20:01:59 +0800 Subject: [PATCH] Don't install build libraries pip pulls down pre-compiled versions of all the required packages, so we don't need to build anything locally. --- Dockerfile | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2240da6..ff31efe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,18 +8,6 @@ ARG TZ='UTC' ENV DEFAULT_TZ=${TZ} -RUN apk add --no-cache \ - libxml2-dev \ - libxslt-dev \ - python3-dev \ - make \ - gcc \ - libffi-dev \ - build-base \ - openssl-dev \ - cargo \ - tzdata - # Fix the warning where no timezone is specified RUN cp /usr/share/zoneinfo/${DEFAULT_TZ} /etc/localtime