From 568cd021a71036537a96d77d1478e04830c7ead5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linas=20Vep=C5=A1tas?= Date: Wed, 8 May 2024 12:09:49 -0500 Subject: [PATCH] Bump container timestamps --- opencog/atomspace/Dockerfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/opencog/atomspace/Dockerfile b/opencog/atomspace/Dockerfile index 15c4278..f7d49f9 100644 --- a/opencog/atomspace/Dockerfile +++ b/opencog/atomspace/Dockerfile @@ -18,13 +18,16 @@ FROM opencog/opencog-deps:latest RUN apt-get -y update; apt-get -y upgrade # Basic tools that allow this image to be minimally usable. -RUN apt-get -y install telnet netcat-openbsd tmux byobu time +RUN apt-get -y install telnet netcat-openbsd tmux byobu -# Some extra stuff, for visualization +# Basic minimal debug tools. +RUN apt-get -y install gdb time + +# Webserver is needed for visualization. RUN apt-get -y install apache2 php # Install cogutil -ENV LAST_COGUTIL_UPDATE 2023-03-05 +ENV LAST_COGUTIL_UPDATE 2024-05-08 RUN /tmp/octool -c && ccache -C # Update Link Grammar. This avoids having to rebuild the opencog/deps @@ -33,7 +36,7 @@ ENV LAST_LINK_GRAMMAR_UPDATE 2024-05-02 RUN /tmp/octool -l default && ccache -C # Install core AtomSpace. -ENV LAST_ATOMSPACE_UPDATE 2024-05-02 +ENV LAST_ATOMSPACE_UPDATE 2024-05-08 RUN /tmp/octool -a && ccache -C USER opencog