| # 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:latest |
| |
| RUN apt-get update && \ |
| apt-get install -y --no-install-recommends \ |
| curl \ |
| wget \ |
| git \ |
| bash \ |
| unzip \ |
| ca-certificates \ |
| autoconf \ |
| automake \ |
| libssl-dev libtool pkg-config \ |
| ruby ruby-dev \ |
| python3.10 pip \ |
| openjdk-17-jdk \ |
| build-essential && \ |
| rm -rf /var/lib/apt/lists/* |
| |
| # Install Node.js 20.x |
| RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \ |
| apt-get install -y nodejs && \ |
| npm install -g npm@latest |
| |
| # Set up Maven |
| ARG MAVEN_VERSION=3.9.9 |
| RUN wget https://archive.apache.org/dist/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.zip && \ |
| unzip apache-maven-${MAVEN_VERSION}-bin.zip -d /opt && \ |
| ln -s /opt/apache-maven-${MAVEN_VERSION}/bin/mvn /usr/bin/mvn && \ |
| rm apache-maven-${MAVEN_VERSION}-bin.zip |
| |
| # Set environment variables for Maven and Java |
| ENV MAVEN_HOME=/opt/apache-maven-${MAVEN_VERSION} |
| ENV PATH="${MAVEN_HOME}/bin:${PATH}" |
| |
| USER ubuntu |