You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2021/04/24 15:26:31 UTC

[arrow-datafusion] branch master updated: [Ballista] Docker files for ui (#22)

This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git


The following commit(s) were added to refs/heads/master by this push:
     new 3cb83fe  [Ballista] Docker files for ui (#22)
3cb83fe is described below

commit 3cb83fe6e584a8b5590b88259b91b53b520aa653
Author: sathis <sa...@gmail.com>
AuthorDate: Sat Apr 24 20:56:24 2021 +0530

    [Ballista] Docker files for ui (#22)
---
 ballista/ui/scheduler/.dockerignore |  2 ++
 dev/build-ui.sh                     | 24 +++++++++++++++++++++++
 dev/docker/ui.scheduler.dockerfile  | 38 +++++++++++++++++++++++++++++++++++++
 dev/release/rat_exclude_files.txt   |  1 +
 4 files changed, 65 insertions(+)

diff --git a/ballista/ui/scheduler/.dockerignore b/ballista/ui/scheduler/.dockerignore
new file mode 100644
index 0000000..dd87e2d
--- /dev/null
+++ b/ballista/ui/scheduler/.dockerignore
@@ -0,0 +1,2 @@
+node_modules
+build
diff --git a/dev/build-ui.sh b/dev/build-ui.sh
new file mode 100755
index 0000000..d39d610
--- /dev/null
+++ b/dev/build-ui.sh
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+# 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.
+
+BALLISTA_VERSION=0.4.2-SNAPSHOT
+
+set -e
+
+docker build -t ballistacompute/ballista-scheduler-ui:$BALLISTA_VERSION -f dev/docker/ui.scheduler.dockerfile ballista/ui/scheduler
diff --git a/dev/docker/ui.scheduler.dockerfile b/dev/docker/ui.scheduler.dockerfile
new file mode 100644
index 0000000..99892e9
--- /dev/null
+++ b/dev/docker/ui.scheduler.dockerfile
@@ -0,0 +1,38 @@
+# 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.
+
+# Turn .dockerignore to .dockerallow by excluding everything and explicitly
+# allowing specific files and directories. This enables us to quickly add
+# dependency files to the docker content without scanning the whole directory.
+# This setup requires to all of our docker containers have arrow's source
+# as a mounted directory.
+
+FROM node:14.16.0-alpine as build
+WORKDIR /app
+ENV PATH /app/node_modules/.bin:$PATH
+
+COPY package.json ./
+COPY yarn.lock ./
+RUN yarn
+
+COPY . ./
+RUN yarn build
+
+FROM nginx:stable-alpine
+COPY --from=build /app/build /usr/share/nginx/html
+EXPOSE 80
+CMD ["nginx", "-g", "daemon off;"]
diff --git a/dev/release/rat_exclude_files.txt b/dev/release/rat_exclude_files.txt
index cef0a91..b94c0ea 100644
--- a/dev/release/rat_exclude_files.txt
+++ b/dev/release/rat_exclude_files.txt
@@ -1,5 +1,6 @@
 *.npmrc
 *.gitignore
+*.dockerignore
 .gitmodules
 *_generated.h
 *_generated.js