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/10/02 19:01:47 UTC

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

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

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

commit a9caeefeeca051f271f92fd3a90a8cc87b7c8c98
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"]