| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| |
| FROM ubuntu:24.04 |
| |
| LABEL maintainer="Apache Auron Team" |
| LABEL description="Ubuntu 24.04 build environment for Auron project" |
| |
| # --------------------------------------------------------------------- |
| # Update system and install basic tools |
| # --------------------------------------------------------------------- |
| ENV DEBIAN_FRONTEND=noninteractive |
| |
| RUN apt-get update -y && \ |
| apt-get install -y --no-install-recommends \ |
| build-essential \ |
| software-properties-common \ |
| curl wget unzip zip \ |
| git ca-certificates openssl libssl-dev \ |
| pkg-config libz-dev && \ |
| rm -rf /var/lib/apt/lists/* |
| |
| # --------------------------------------------------------------------- |
| # Install GCC / G++ |
| # --------------------------------------------------------------------- |
| RUN apt-get update -y && \ |
| apt-get install -y gcc g++ && \ |
| update-alternatives --install /usr/bin/cc cc /usr/bin/gcc 100 && \ |
| update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++ 100 && \ |
| rm -rf /var/lib/apt/lists/* |
| |
| # --------------------------------------------------------------------- |
| # Install Rust nightly toolchain |
| # --------------------------------------------------------------------- |
| RUN curl https://sh.rustup.rs -sSf -o rustup-init && \ |
| chmod +x rustup-init && \ |
| ./rustup-init -y --default-toolchain nightly-2025-05-09-x86_64-unknown-linux-gnu && \ |
| rm rustup-init |
| ENV PATH="/root/.cargo/bin:${PATH}" |
| |
| # --------------------------------------------------------------------- |
| # Install Java (OpenJDK 8) |
| # --------------------------------------------------------------------- |
| RUN apt-get update -y && \ |
| apt-get install -y openjdk-8-jdk && \ |
| rm -rf /var/lib/apt/lists/* |
| ENV JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64" |
| ENV PATH="${JAVA_HOME}/bin:${PATH}" |
| |
| # --------------------------------------------------------------------- |
| # Set working directory |
| # --------------------------------------------------------------------- |
| WORKDIR /auron |
| |
| # --------------------------------------------------------------------- |
| # Default command |
| # --------------------------------------------------------------------- |
| CMD ["/bin/bash"] |