From 3aa1fdd42b3761ce36af0a026d8368dd27963cad Mon Sep 17 00:00:00 2001 From: Omar Al-Ithawi Date: Mon, 11 Sep 2023 19:43:00 +0300 Subject: [PATCH] chore: remove duplicate apt dependencies from Dockerfile (#32982) The following dependencies were duplicated in the same command: - libxml2-dev - libxmlsec1-dev - libxslt1-dev This contribution is part of the [FC-0012 project](https://openedx.atlassian.net/l/cp/XGS0iCcQ) which is sparked by the [Translation Infrastructure update OEP-58](https://open-edx-proposals.readthedocs.io/en/latest/architectural-decisions/oep-0058-arch-translations-management.html#specification). --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9e1fa57910..da215f08dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -91,9 +91,6 @@ RUN apt-get update && \ apt-get -y install --no-install-recommends \ curl \ libssl-dev \ - libxml2-dev \ - libxmlsec1-dev \ - libxslt1-dev \ libffi-dev \ libfreetype6-dev \ libgeos-dev \