From 041df42f26123aa70ed0893bc90e4203cf642cbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Mielcarek?= Date: Wed, 15 May 2024 22:46:30 +0200 Subject: [PATCH] Fix CI --- web/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/Dockerfile b/web/Dockerfile index 9d5dae6..f62551b 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -5,7 +5,8 @@ RUN apt-get update && \ apt-get install -y python3 python3-pip && \ rm -rf /var/lib/apt/lists/* -RUN apt-get install -y tree +RUN apt-get update && \ + apt-get install -y tree # Set working directory inside the container WORKDIR /usr/src/app