From d189b5584c24d7d4b371d826c8400f55f194c0c4 Mon Sep 17 00:00:00 2001 From: Justin Lee <2025jlee@tjhsst.edu> Date: Wed, 3 Jan 2024 22:51:06 -0500 Subject: [PATCH] fix(orchestrator): add update to dockerfile template --- orchestrator/orchestrator/docker/templates/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/orchestrator/orchestrator/docker/templates/Dockerfile b/orchestrator/orchestrator/docker/templates/Dockerfile index 443abbce..9d021277 100644 --- a/orchestrator/orchestrator/docker/templates/Dockerfile +++ b/orchestrator/orchestrator/docker/templates/Dockerfile @@ -8,5 +8,6 @@ RUN {{ parent_setup_command }} {% endif %} {% if install_command -%} +RUN apt-get --allow-releaseinfo-change update -y RUN {{ install_command }} {% endif %}