Skip to content

Commit 3e06ffa

Browse files
committed
fix: use copy instead of clone
1 parent 0888471 commit 3e06ffa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ RUN cat <<EOF > /root/.gitconfig
2323
insteadOf="[email protected]:"
2424
EOF
2525

26-
RUN git clone --recursive https://github.com/lightpanda-io/browser.git /browser
26+
COPY . /browser
27+
RUN git submodule update --init --recursive
2728

2829
# Stage 2: Download V8
2930
FROM base AS v8_download

0 commit comments

Comments
 (0)