1# Copyright 2017 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#
5# Defines a docker image that can build cras fuzzers.
6#
7FROM gcr.io/oss-fuzz-base/base-builder
8LABEL maintainer="dgreid@chromium.org"
9
10COPY . "${SRC}/adhd"
11COPY cras/src/fuzz/build.sh "${SRC}/build.sh"
12RUN "${SRC}/adhd/cras/install_deps.sh"
13RUN mkdir -p /etc/cras && cp "${SRC}/adhd/cras-config/dsp.ini.sample" /etc/cras
14