mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:20:31 +00:00
ae1ed9e469
This made the docker build work for me locally. The "updates" list was probably needed on jessie but isn't needed on bullseye anymore. Change-Id: I88f257b928f6ef690dac9e7d450eaa4c2ea12b2f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/271102 Reviewed-by: William Hesse <whesse@google.com>
10 lines
No EOL
495 B
Docker
10 lines
No EOL
495 B
Docker
# Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
FROM launcher.gcr.io/google/debian11:latest
|
|
ARG depot_tools
|
|
RUN apt-get update \
|
|
&& apt-get install -y build-essential debhelper git python3 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
ENV PATH="$depot_tools:${PATH}"
|
|
ENTRYPOINT python3 tools/linux_dist_support/linux_distribution_support.py |