browsh/Dockerfile
2016-05-08 22:29:49 +03:00

37 lines
1.3 KiB
Docker

FROM alpine
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
# Main dependencies
RUN apk add --no-cache xvfb xdotool@testing xfce4 ffmpeg openssh mosh chromium
# Generate host keys
RUN ssh-keygen -A
# Installing Hiptext, video to text renderer
RUN apk --no-cache add --virtual build-dependencies \
build-base git freetype-dev jpeg-dev ffmpeg-dev ragel
RUN apk --no-cache add libgflags-dev@testing glog-dev@testing
RUN mkdir -p build \
&& cd build \
# Need glibc for locale support
&& wget -q -O /etc/apk/keys/andyshinn.rsa.pub https://raw.githubusercontent.com/andyshinn/alpine-pkg-glibc/master/andyshinn.rsa.pub \
&& wget https://github.com/andyshinn/alpine-pkg-glibc/releases/download/2.23-r1/glibc-2.23-r1.apk \
&& apk --no-cache add glibc-2.23-r1.apk \
# Currently need to use a patched vesion of hiptext that supports video streams and ffmpeg v3
# Watch: https://github.com/jart/hiptext/pull/27
&& git clone https://github.com/tombh/hiptext \
&& cd hiptext \
&& git checkout ffmpeg-updates \
&& make \
# Alpine's version of `install` doesn't support the `--mode=` format
&& install -m 0755 hiptext /usr/local/bin \
&& cd ../.. && rm -rf build \
&& apk --no-cache del build-dependencies
COPY . /app
EXPOSE 7777