Last active
March 25, 2020 10:06
-
-
Save jackersson/59ca11f9b1d3413e16084b1bab05f49d to your computer and use it in GitHub Desktop.
Gstreamer-1.0+Python3.6-Ubuntu-18-Docker-Installation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:18.04 | |
USER root | |
RUN apt-get update && apt-get -y --no-install-recommends install \ | |
sudo \ | |
vim \ | |
wget \ | |
build-essential \ | |
pkg-config \ | |
python3.6 \ | |
python3-pip \ | |
python3.6-dev \ | |
python3.6-venv \ | |
python-dev \ | |
python3-dev | |
RUN apt-get -y --no-install-recommends install \ | |
git \ | |
autoconf \ | |
automake \ | |
libtool \ | |
gstreamer-1.0 \ | |
gstreamer1.0-dev \ | |
libgstreamer1.0-0 \ | |
gstreamer1.0-plugins-base \ | |
gstreamer1.0-plugins-good \ | |
gstreamer1.0-plugins-bad \ | |
gstreamer1.0-plugins-ugly \ | |
gstreamer1.0-libav \ | |
gstreamer1.0-doc \ | |
gstreamer1.0-tools \ | |
gstreamer1.0-x \ | |
gstreamer1.0-alsa \ | |
gstreamer1.0-gl \ | |
gstreamer1.0-gtk3 \ | |
gstreamer1.0-qt5 \ | |
gstreamer1.0-pulseaudio \ | |
python-gst-1.0 \ | |
libgirepository1.0-dev \ | |
libcairo2-dev \ | |
gir1.2-gstreamer-1.0 \ | |
python3-gi \ | |
python-gi-dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment