From b349f0e6c348fc872a75312aa62f0d8298f20ff6 Mon Sep 17 00:00:00 2001 From: logicmoo Date: Fri, 8 Nov 2024 09:39:42 -0800 Subject: [PATCH] Fix for https://github.com/trueagi-io/metta-wam/issues/185 Dockerfile needs modification to run without errors #185 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e077fe5d8ac..d428a1c4e22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG DEBIAN_FRONTEND=noninteractive RUN apt update RUN apt install -y python3 python3-pip libpython3-dev git RUN apt install -y sudo git curl gcc cmake -RUN apt install -y python3-venv time wget vim bc +RUN apt install -y python3-venv time wget vim bc dos2unix # Create user ENV USER=user @@ -33,9 +33,9 @@ COPY ./ ./ # get rid of copied venv that is probably using a whole different python anyways RUN rm -rf ./venv/ COPY ./INSTALL.sh ./INSTALL.sh -RUN apt install dos2unix + SHELL ["/bin/bash", "-c"] -RUN source ./INSTALL.sh --easy +RUN source ./INSTALL.sh --easy --allow-system-modifications #RUN swipl -l src/main/metta_interp.pl -g qcompile_mettalog