mirror of
https://github.com/servo/servo.git
synced 2025-07-03 21:43:41 +01:00
Install runtime dependencies
This commit is contained in:
parent
35db5ff6d6
commit
7d41ae2fa4
1 changed files with 11 additions and 1 deletions
|
@ -1,5 +1,11 @@
|
||||||
FROM ubuntu:bionic-20180821
|
FROM ubuntu:bionic-20180821
|
||||||
|
|
||||||
|
ENV \
|
||||||
|
#
|
||||||
|
# The 'tzdata' APT package waits for user input on install by default
|
||||||
|
# https://stackoverflow.com/questions/44331836/apt-get-install-tzdata-noninteractive
|
||||||
|
DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
apt-get update -q && \
|
apt-get update -q && \
|
||||||
apt-get install -qy --no-install-recommends \
|
apt-get install -qy --no-install-recommends \
|
||||||
|
@ -14,4 +20,8 @@ RUN \
|
||||||
virtualenv \
|
virtualenv \
|
||||||
#
|
#
|
||||||
# Fetching build artifacts
|
# Fetching build artifacts
|
||||||
curl
|
curl \
|
||||||
|
#
|
||||||
|
# Servo’s runtime dependencies
|
||||||
|
libgstreamer-plugins-bad1.0 \
|
||||||
|
libssl1.0.0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue