1# Copyright (C) 2018 The Android Open Source Project 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15 16# Creates an image that can check out / build / test the perfetto source. The 17# image is used by the Kokoro continuous integration jobs, but is also suitable 18# for local development. There is no pre-defined entrypoint on purpose (to keep 19# it flexible). 20# 21# The built image is available as asia.gcr.io/perfetto-ci/perfetto-ci:latest 22 23FROM debian:latest 24 25ENV DEBIAN_FRONTEND noninteractive 26 27RUN echo deb http://deb.debian.org/debian testing main > /etc/apt/sources.list.d/testing.list 28RUN apt-get update 29RUN apt-get -y install python git curl 30# gcc-7 for sysroot 31RUN apt-get -y -t testing install gcc-7 32 33# pip for installing certiain test script dependencies 34RUN curl https://bootstrap.pypa.io/get-pip.py | python - 35 36RUN useradd -m perfetto 37USER perfetto:perfetto 38WORKDIR /home/perfetto 39