mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-21 20:28:58 +00:00
f4a706fc49
chore: track upstream buildtools
25 lines
975 B
Docker
25 lines
975 B
Docker
ARG CROSS_BASE_IMAGE
|
|
FROM $CROSS_BASE_IMAGE
|
|
|
|
RUN apt update && \
|
|
apt install -y curl && \
|
|
curl -L https://github.com/mozilla/sccache/releases/download/v0.7.7/sccache-v0.7.7-x86_64-unknown-linux-musl.tar.gz | tar xzf -
|
|
|
|
ENV TZ=Etc/UTC
|
|
COPY ./build/*.sh /chromium_build/
|
|
COPY ./build/install-build-deps.py /chromium_build/
|
|
RUN \
|
|
DEBIAN_FRONTEND=noninteractive \
|
|
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections \
|
|
&& ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone \
|
|
&& apt-get update && apt-get install -y lsb-release sudo \
|
|
&& sed -i 's/snapcraft/snapcraftnoinstall/g' /chromium_build/install-build-deps.sh \
|
|
&& /chromium_build/install-build-deps.sh --no-prompt --no-chromeos-fonts \
|
|
&& rm -rf /chromium_build \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN chmod +x /sccache-v0.7.7-x86_64-unknown-linux-musl/sccache
|
|
|
|
ENV SCCACHE=/sccache-v0.7.7-x86_64-unknown-linux-musl/sccache
|
|
ENV SCCACHE_DIR=./target/sccache
|