/
githubmirror
/
alluxio
Обзор
Документация
Войти
/
githubmirror
/
alluxio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v295
dev/github/Dockerfile-jdk11
38 строк
2 KB
Rico Chiu
Bump alluxio-maven maven version to 3.8.6
07 апр 2023, 03:50
Не верифицирован
07 апр 2023, 03:50
ef3638c
Код
Авторство
О чём код?
# # The Alluxio Open Foundation licenses this work under the Apache License, version 2.0 # (the "License"). You may not use this work except in compliance with the License, which is # available at www.apache.org/licenses/LICENSE-2.0 # # This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, # either express or implied, as more fully set forth in the License. # # See the NOTICE file distributed with this work for information regarding copyright ownership. # # See https://hub.docker.com/r/alluxio/alluxio-maven for instructions on running the image. FROM maven:3.8.6-jdk-11 # need to create /.config to avoid npm errors RUN mkdir -p /home/jenkins && \ chmod -R 777 /home/jenkins && \ chmod g+w /etc/passwd && \ mkdir -p /.config && \ chmod -R 777 /.config && \ apt-get update -y && \ apt-get upgrade -y ca-certificates && \ apt-get install -y build-essential fuse3 libfuse3-dev libfuse-dev make ruby ruby-dev # jekyll for documentation RUN gem install public_suffix:4.0.7 jekyll:4.2.2 bundler:2.3.18 # golang for tooling RUN ARCH=$(dpkg --print-architecture) && \ wget https://go.dev/dl/go1.18.1.linux-${ARCH}.tar.gz && \ tar -xvf go1.18.1.linux-${ARCH}.tar.gz && \ mv go /usr/local ENV GOROOT=/usr/local/go ENV PATH=$GOROOT/bin:$PATH # terraform for deployment scripts RUN ARCH=$(dpkg --print-architecture) && \ wget --quiet https://releases.hashicorp.com/terraform/1.0.1/terraform_1.0.1_linux_${ARCH}.zip && \ unzip -o ./terraform_1.0.1_linux_${ARCH}.zip -d /usr/local/bin/ && \ rm terraform_1.0.1_linux_${ARCH}.zip