blob: 25bbd83e32967d55d4834aa59a4e7183619f8d5f [file] [log] [blame]
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
FROM ubuntu:trusty
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get upgrade -y && \
apt-get install -y curl build-essential
RUN echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections && \
curl 'https://chromium.googlesource.com/chromium/src/+/master/build/install-build-deps.sh?format=TEXT' | \
base64 -d | bash -s -- --no-prompt --no-chromeos-fonts --syms
COPY run.sh /bin
RUN chmod +x /bin/run.sh
ENTRYPOINT ["run.sh"]