diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..18c2e2d9d5c45aa5989e69e34f1497d75d069f1f --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,23 @@ +# +# SPDX-FileCopyrightText: Copyright 2024 Arm Limited and/or its affiliates +# +# SPDX-License-Identifier: Apache-2.0 +# + +FROM ubuntu:22.04 + +RUN apt-get update \ + && DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ + build-essential \ + ca-certificates \ + clang \ + clang-tidy \ + cmake \ + git \ + ninja-build \ + python3 \ + python3-pip + +RUN pip install \ + reuse \ + pre-commit