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)
 ```
This commit is contained in:
Pierre Tachoire
2024-11-14 08:46:01 +01:00
parent 1854074f64
commit 2cd1e927f7

View File

@@ -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 && \