Skip to content

Commit c8d97ba

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ 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+
WORKDIR /browser
28+
RUN git submodule update --init --recursive
2729

2830
# Stage 2: Download V8
2931
FROM base AS v8_download

0 commit comments

Comments
 (0)