Install runtime dependencies

This commit is contained in:
Simon Sapin 2018-09-20 20:04:32 +02:00
parent 35db5ff6d6
commit 7d41ae2fa4

View file

@ -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 \
#
# Servos runtime dependencies
libgstreamer-plugins-bad1.0 \
libssl1.0.0