mirror of
https://github.com/servo/servo.git
synced 2025-07-13 02:13:40 +01:00
23 lines
607 B
Docker
23 lines
607 B
Docker
FROM ubuntu:bionic-20180821
|
|
|
|
ENV \
|
|
#
|
|
# Some APT packages like 'tzdata' wait for user input on install by default.
|
|
# https://stackoverflow.com/questions/44331836/apt-get-install-tzdata-noninteractive
|
|
DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN \
|
|
apt-get update -q && \
|
|
apt-get install -qy --no-install-recommends \
|
|
#
|
|
# Cloning the repository
|
|
git \
|
|
ca-certificates \
|
|
#
|
|
# Running mach
|
|
python \
|
|
virtualenv \
|
|
#
|
|
# Installing rustup and sccache (build dockerfile) or fetching build artifacts (run tasks)
|
|
curl
|
|
|