You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/08/06 13:28:05 UTC

[airavata-django-portal] branch local-builds created (now 9f6435a)

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

machristie pushed a change to branch local-builds
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git.


      at 9f6435a  Add shebang to build script

This branch includes the following new commits:

     new 19835d1  Dockerfile for building JS code
     new 9f6435a  Add shebang to build script

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[airavata-django-portal] 02/02: Add shebang to build script

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch local-builds
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git

commit 9f6435a49df565b2f4fc1c415cc782727e08fe24
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Tue Jul 16 10:24:58 2019 -0400

    Add shebang to build script
---
 build_js.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/build_js.sh b/build_js.sh
index 98ac49d..962d73a 100755
--- a/build_js.sh
+++ b/build_js.sh
@@ -1,3 +1,4 @@
+#!/bin/bash
 
 # Get the directory that this script is in
 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"


[airavata-django-portal] 01/02: Dockerfile for building JS code

Posted by ma...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch local-builds
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git

commit 19835d1b48d2c709cdfd9febd7ef4e6004928364
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Tue Jul 16 10:24:34 2019 -0400

    Dockerfile for building JS code
---
 scripts/docker-build/Dockerfile | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/scripts/docker-build/Dockerfile b/scripts/docker-build/Dockerfile
new file mode 100644
index 0000000..0dd1032
--- /dev/null
+++ b/scripts/docker-build/Dockerfile
@@ -0,0 +1,9 @@
+FROM node:10-alpine
+
+RUN apk update && apk add bash
+
+VOLUME /code
+
+WORKDIR /code
+
+CMD ["./build_js.sh"]