From 6c2c63a857a9ef8b59a0420aaace6fe967512341 Mon Sep 17 00:00:00 2001 From: Charles Haynes Date: Wed, 2 Oct 2024 09:33:21 -0400 Subject: [PATCH] :hammer: Fix DockerFile to build locally --- Dockerfile | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e850d68..1a76b12b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,17 +14,16 @@ FROM maven:3-eclipse-temurin-21 # download system dependencies first to take advantage of docker caching RUN apt-get update; apt-get install -y --no-install-recommends \ - build-essential \ - default-mysql-client \ - default-libmysqlclient-dev \ - python3 \ - python3-setuptools \ - python3-dev \ - python3-pip \ - unzip \ - perl \ - && rm -rf /var/lib/apt/lists/* \ - && pip3 install wheel + build-essential \ + default-mysql-client \ + default-libmysqlclient-dev \ + python3 \ + python3-setuptools \ + python3-dev \ + python3-pip \ + unzip \ + perl \ + && rm -rf /var/lib/apt/lists/* # Install any needed packages specified in requirements.txt COPY requirements.txt ./