15
15
16
16
# Usage: docker build -t sjtucaocao/javet:3.1.1 -f docker/linux-x86_64/base_all_in_one.Dockerfile .
17
17
18
- ARG JAVET_NODE_VERSION=20.12.2
19
- ARG JAVET_V8_VERSION=12.4.254.9
20
-
21
18
FROM ubuntu:20.04
22
19
WORKDIR /
23
20
21
+ ARG JAVET_NODE_VERSION=20.12.2
22
+ ARG JAVET_V8_VERSION=12.4.254.9
23
+
24
24
# Update Ubuntu
25
25
ENV DEBIAN_FRONTEND=noninteractive
26
26
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
28
28
RUN apt-get install --upgrade -qq -y --no-install-recommends python3 python python3-pip python3-distutils python3-testresources
29
29
RUN apt-get upgrade -y
30
30
RUN pip3 install coloredlogs
@@ -39,22 +39,22 @@ RUN ln -sf /usr/lib/cmake/bin/cmake /bin/cmake
39
39
RUN rm cmake-3.25.1-linux-x86_64.sh
40
40
41
41
# 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.
47
57
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.
58
58
59
59
# Build V8
60
60
WORKDIR /google/v8
0 commit comments