xref: /aosp_15_r20/external/crosvm/e2e_tests/guest_under_test/rootfs_benches/gimp/ContainerFile (revision bb4ee6a4ae7042d18b07a98463b9c8b875e44b39)
1# Copyright 2023 The ChromiumOS Authors
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:bookworm
6
7# Install many gimp plugins and data to make the initialize time longer
8RUN apt-get update \
9    && apt-get install --no-install-recommends --yes wget gimp gimp-data-extras gimp-lensfun gimp-texturize \
10    && rm -rf /var/lib/apt/lists/*
11
12RUN mkdir /workdir
13
14WORKDIR /workdir
15
16ADD logo/logo_512.png test1.png
17
18RUN cp test1.png test2.png
19