From 63ffbef202f4ded885560b52896f28c51356758e Mon Sep 17 00:00:00 2001 From: avdata99 Date: Mon, 22 Jan 2024 17:06:45 -0300 Subject: [PATCH 1/2] Preserve libmagic This is a `messytables` requirement --- datapusher/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapusher/Dockerfile b/datapusher/Dockerfile index 3bb65af..b908b48 100755 --- a/datapusher/Dockerfile +++ b/datapusher/Dockerfile @@ -18,6 +18,7 @@ RUN apk add --no-cache \ uwsgi-http \ uwsgi-corerouter \ uwsgi-python \ + libmagic \ # Temporary packages to build DataPusher requirements && apk add --no-cache --virtual .build-deps \ gcc \ @@ -26,7 +27,6 @@ RUN apk add --no-cache \ python3-dev \ libxml2-dev \ libxslt-dev \ - libmagic \ openssl-dev \ cargo From 6d8bdd2ef1b3af23971bd507d719bbd791c5ac38 Mon Sep 17 00:00:00 2001 From: avdata99 Date: Mon, 22 Jan 2024 17:10:24 -0300 Subject: [PATCH 2/2] fix alpha order --- datapusher/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datapusher/Dockerfile b/datapusher/Dockerfile index b908b48..22fccd0 100755 --- a/datapusher/Dockerfile +++ b/datapusher/Dockerfile @@ -12,13 +12,13 @@ RUN apk add --no-cache \ py3-pip \ py3-wheel \ libffi-dev \ + libmagic \ libressl-dev \ libxslt \ uwsgi \ uwsgi-http \ uwsgi-corerouter \ uwsgi-python \ - libmagic \ # Temporary packages to build DataPusher requirements && apk add --no-cache --virtual .build-deps \ gcc \