From 2cd1e927f78fb93e6eb994c699679c53a0b670ac Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Thu, 14 Nov 2024 08:46:01 +0100 Subject: [PATCH] docker: use absolute path with WORKDIR remove following the warning ``` 1 warning found (use docker --debug to expand): - WorkdirRelativePath: Relative workdir "browser" can have unexpected results if the base image changes (line 48) ``` --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7d55d6d1..df86dad0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,7 @@ EOF # clone lightpanda RUN git clone git@github.com:lightpanda-io/browser.git -WORKDIR browser +WORKDIR /browser # install deps RUN git submodule init && \