浏览代码

HADOOP-17775. Remove JavaScript package from Docker environment. (#3182)

Signed-off-by: Akira Ajisaka <aajisaka@apache.org>
Masatake Iwasaki 3 年之前
父节点
当前提交
99cff01e38
共有 2 个文件被更改,包括 0 次插入40 次删除
  1. 0 20
      dev-support/docker/Dockerfile
  2. 0 20
      dev-support/docker/Dockerfile_aarch64

+ 0 - 20
dev-support/docker/Dockerfile

@@ -148,26 +148,6 @@ ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
 # Install pylint and python-dateutil
 RUN pip3 install pylint==2.6.0 python-dateutil==2.8.1
 
-###
-# Install node.js 10.x for web UI framework (4.2.6 ships with Xenial)
-###
-# hadolint ignore=DL3008
-RUN curl -L -s -S https://deb.nodesource.com/setup_10.x | bash - \
-    && apt-get install -y --no-install-recommends nodejs \
-    && apt-get clean \
-    && rm -rf /var/lib/apt/lists/* \
-    && npm install -g bower@1.8.8
-
-###
-## Install Yarn 1.22.5 for web UI framework
-####
-RUN curl -s -S https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
-    && echo 'deb https://dl.yarnpkg.com/debian/ stable main' > /etc/apt/sources.list.d/yarn.list \
-    && apt-get -q update \
-    && apt-get install -y --no-install-recommends yarn=1.22.5-1 \
-    && apt-get clean \
-    && rm -rf /var/lib/apt/lists/*
-
 ###
 # Install hadolint
 ####

+ 0 - 20
dev-support/docker/Dockerfile_aarch64

@@ -131,26 +131,6 @@ ENV PATH "${PATH}:/opt/protobuf/bin"
 ####
 RUN pip3 install pylint==2.6.0 python-dateutil==2.8.1
 
-###
-# Install node.js 10.x for web UI framework (4.2.6 ships with Xenial)
-###
-# hadolint ignore=DL3008
-RUN curl -L -s -S https://deb.nodesource.com/setup_10.x | bash - \
-    && apt-get install -y --no-install-recommends nodejs \
-    && apt-get clean \
-    && rm -rf /var/lib/apt/lists/* \
-    && npm install -g bower@1.8.8
-
-###
-## Install Yarn 1.22.5 for web UI framework
-####
-RUN curl -s -S https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
-    && echo 'deb https://dl.yarnpkg.com/debian/ stable main' > /etc/apt/sources.list.d/yarn.list \
-    && apt-get -q update \
-    && apt-get install -y --no-install-recommends yarn=1.22.5-1 \
-    && apt-get clean \
-    && rm -rf /var/lib/apt/lists/*
-
 ###
 # Avoid out of memory errors in builds
 ###