blob: b5f41e2a82209ecabd0eff518223b7206ba242fa [file] [log] [blame]
Jingkui Wang4dddd742018-05-01 14:45:31 -07001# Copyright 2018 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5FROM debian:9.4
6MAINTAINER Jingkui Wang (jkwang@google.com)
7
8ADD ./ /touch_firmware_test
9WORKDIR /touch_firmware_test
10
11RUN apt-get update
12RUN apt-get install -qy gcc
13RUN apt-get install -qy git
14RUN apt-get install -qy python
15RUN apt-get install -qy python-tk
16RUN apt-get install -qy python-dev
17RUN apt-get install -qy curl
18RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
19RUN python get-pip.py
20RUN apt-get install -qy adb
21RUN pip install -r requirements.txt
22
23ENV TOUCH_REPORT_OUTPUT /output
24EXPOSE 8080