mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
simplescreenrecorder
This commit is contained in:
parent
152b69a298
commit
ecf3dca406
81
ssr/Dockerfile
Normal file
81
ssr/Dockerfile
Normal file
|
@ -0,0 +1,81 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create SimpleScreenRecorder in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build SimpleScreenRecoder
|
||||
# in a container with all dependencies installed.
|
||||
# Tested on Debian Jessie.
|
||||
# USAGE:
|
||||
# # Download ssr Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/ssr/Dockerfile
|
||||
#
|
||||
# # Build ssr image
|
||||
# docker build -t ssr .
|
||||
#
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY ssr
|
||||
#
|
||||
|
||||
DOCKER-VERSION 1.3
|
||||
|
||||
# Base docker image
|
||||
FROM debian:jessie
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
# Install dependencies
|
||||
RUN dpkg --add-architecture i386 && apt-get update && apt-get install -y \
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
git \
|
||||
pkg-config \
|
||||
qt4-qmake \
|
||||
libqt4-dev \
|
||||
libavformat-dev \
|
||||
libavcodec-dev \
|
||||
libavutil-dev \
|
||||
libswscale-dev \
|
||||
libasound2-dev \
|
||||
libpulse-dev \
|
||||
libjack-jackd2-dev \
|
||||
libgl1-mesa-dev \
|
||||
libglu1-mesa-dev \
|
||||
libx11-dev \
|
||||
libxfixes-dev \
|
||||
libxext-dev \
|
||||
libxi-dev \
|
||||
g++-multilib \
|
||||
libx11-6 \
|
||||
libxext6 \
|
||||
libxfixes3 \
|
||||
libxfixes3:i386 \
|
||||
libglu1-mesa:i386 \
|
||||
sudo \
|
||||
--no-install-recommends
|
||||
|
||||
# make adjustments
|
||||
RUN cd /usr/lib/i386-linux-gnu && \
|
||||
ln -s libGL.so.1 libGL.so && \
|
||||
ln -s libGLU.so.1 libGLU.so && \
|
||||
ln -s libX11.so.6 libX11.so && \
|
||||
ln -s libXext.so.6 libXext.so && \
|
||||
ln -s libXfixes.so.3 libXfixes.so && \
|
||||
ldconfig
|
||||
|
||||
# add user
|
||||
#RUN adduser --system --home=/src --shell=/bin/sh --no-create-home \
|
||||
# --group ssr
|
||||
|
||||
# clone source
|
||||
RUN git clone https://github.com/MaartenBaert/ssr.git /src
|
||||
|
||||
# install
|
||||
#RUN echo "ssr ALL = NOPASSWD: /src/simple-build-and-install" >> /etc/sudoers
|
||||
RUN sed -i".bak" '10,13d' /src/simple-build-and-install
|
||||
RUN sed -i".bak" '13,14d' /src/postinstall
|
||||
RUN cd /src && \
|
||||
#chown -R ssr /src && \
|
||||
#sudo -u ssr
|
||||
/src/simple-build-and-install
|
||||
|
||||
# Autorun ssr
|
||||
CMD ["/usr/bin/simplescreenrecorder"]
|
Loading…
Reference in New Issue
Block a user