Skip to content

Commit 975e38a

Browse files
authored
Fix errors during the docker build process (#319)
* Make the default values of ARGs to take effect * Install additional packages to avoid runtime errors of the `install-build-deps.sh` script in V8 * Merge V8 preparation statements to a single layer to fix the 'invalid cross-device link' error
1 parent ad4cb94 commit 975e38a

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

docker/linux-x86_64/base_all_in_one.Dockerfile

+19-19
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515

1616
# Usage: docker build -t sjtucaocao/javet:3.1.1 -f docker/linux-x86_64/base_all_in_one.Dockerfile .
1717

18-
ARG JAVET_NODE_VERSION=20.12.2
19-
ARG JAVET_V8_VERSION=12.4.254.9
20-
2118
FROM ubuntu:20.04
2219
WORKDIR /
2320

21+
ARG JAVET_NODE_VERSION=20.12.2
22+
ARG JAVET_V8_VERSION=12.4.254.9
23+
2424
# Update Ubuntu
2525
ENV DEBIAN_FRONTEND=noninteractive
2626
RUN apt-get update
27-
RUN apt-get install --upgrade -qq -y --no-install-recommends git curl wget build-essential software-properties-common patchelf maven sudo zip unzip execstack cmake
27+
RUN apt-get install --upgrade -qq -y --no-install-recommends git curl wget build-essential software-properties-common patchelf maven sudo zip unzip execstack cmake file keyboard-configuration
2828
RUN apt-get install --upgrade -qq -y --no-install-recommends python3 python python3-pip python3-distutils python3-testresources
2929
RUN apt-get upgrade -y
3030
RUN pip3 install coloredlogs
@@ -39,22 +39,22 @@ RUN ln -sf /usr/lib/cmake/bin/cmake /bin/cmake
3939
RUN rm cmake-3.25.1-linux-x86_64.sh
4040

4141
# Prepare V8
42-
RUN mkdir google
43-
WORKDIR /google
44-
RUN git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
45-
WORKDIR /google/depot_tools
46-
RUN git checkout remotes/origin/main
42+
RUN mkdir -p /google/depot_tools && \
43+
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git /google/depot_tools && \
44+
cd /google/depot_tools && \
45+
git checkout remotes/origin/main && \
46+
export PATH=/google/depot_tools:$PATH && \
47+
cd /google && \
48+
fetch v8 && \
49+
cd /google/v8 && \
50+
git checkout ${JAVET_V8_VERSION} && \
51+
sed -i 's/snapcraft/nosnapcraft/g' ./build/install-build-deps.sh && \
52+
./build/install-build-deps.sh && \
53+
sed -i 's/nosnapcraft/snapcraft/g' ./build/install-build-deps.sh && \
54+
cd /google && \
55+
gclient sync && \
56+
echo V8 preparation is completed.
4757
ENV PATH=/google/depot_tools:$PATH
48-
WORKDIR /google
49-
RUN fetch v8
50-
WORKDIR /google/v8
51-
RUN git checkout ${JAVET_V8_VERSION}
52-
RUN sed -i 's/snapcraft/nosnapcraft/g' ./build/install-build-deps.sh
53-
RUN ./build/install-build-deps.sh
54-
RUN sed -i 's/nosnapcraft/snapcraft/g' ./build/install-build-deps.sh
55-
WORKDIR /google
56-
RUN gclient sync
57-
RUN echo V8 preparation is completed.
5858

5959
# Build V8
6060
WORKDIR /google/v8

0 commit comments

Comments
 (0)