blob: c5ea7a3d9de97454c4d025c1004735d2b19ad274 [file] [log] [blame]
FROM ubuntu:trusty
# TODO(maniscalco): Remove X related packages once we no longer depend on X
# (crbug.com/540932).
RUN apt-get update && \
apt-get install -yq libasound2 libatk1.0-0 libavahi-client3 libavahi-common3 \
libcairo2 libcups2 libdatrie1 libdbus-glib-1-2 libffi6 libfontconfig1 \
libgconf-2-4 libglib2.0-0 libgnutls26 libgraphite2-3 libgssapi-krb5-2 \
libk5crypto3 libkrb5-3 libkrb5support0 libnspr4 libnss3 libotf0 libp11-kit0 \
libpango1.0-0 libpixman-1-0 libstdc++6 libtasn1-6 libthai0 libx11-6 libxau6 \
libxcb1 libxcb-render0 libxcb-shm0 libxcomposite1 libxcursor1 libxdamage1 \
libxdmcp6 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \
xvfb
RUN mkdir /engine
RUN useradd -ms /bin/bash blimp_user
ADD * /engine/
RUN mv /engine/chrome_sandbox /engine/chrome-sandbox
RUN chown -R blimp_user /engine
USER blimp_user
WORKDIR "/engine"
# Invoke xvfb-run using a shell command string to work around a bug where
# xvfb-run fails to invoke the engine and hangs.
#
# TODO(maniscalco): Once we no longer depend on X, stop using the shell command
# string, xvfb-run, and the use-gl flag. (crbug.com/540932, crbug.com/541203).
ENTRYPOINT ["/bin/sh", "-c", \
"/usr/bin/xvfb-run -a /engine/blimp_engine_app --use-gl=osmesa $@", \
"/usr/bin/xvfb-run"]