• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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