From 6a717b1920e21236536dcd4877e832cdb100f691 Mon Sep 17 00:00:00 2001 From: Jason Morris Date: Fri, 1 Nov 2024 12:55:51 -0600 Subject: [PATCH] update dockerfile --- Dockerfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6f6151f..5aa7716 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM swipl:latest as prolog -FROM python:latest - +FROM python:3.10 ENV DEBIAN_FRONTEND=noninteractive @@ -16,7 +15,14 @@ RUN set -eux; \ apt-get install -y --no-install-recommends \ git \ npm \ - libtcmalloc-minimal4 + libtcmalloc-minimal4 \ + libarchive13 \ + libxml2-dev \ + libxslt1-dev \ + gcc \ + wget \ + unzip + WORKDIR /app