summaryrefslogtreecommitdiffstats
path: root/components/datalake-handler/admin/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'components/datalake-handler/admin/Dockerfile')
-rw-r--r--components/datalake-handler/admin/Dockerfile23
1 files changed, 23 insertions, 0 deletions
diff --git a/components/datalake-handler/admin/Dockerfile b/components/datalake-handler/admin/Dockerfile
new file mode 100644
index 00000000..95af88a5
--- /dev/null
+++ b/components/datalake-handler/admin/Dockerfile
@@ -0,0 +1,23 @@
+FROM node:alpine AS builder
+MAINTAINER Ekko Chang <ekko.chang@qct.io>
+
+LABEL org.label-schema.docker.build="docker build -t dl-admin . --no-cache" \
+ org.label-schema.docker.run="docker run -p 80:80 --add-host=dl_feeder:your_feeder_ipaddress dl-admin"
+
+WORKDIR /app
+COPY ./src .
+COPY ./nginx .
+RUN npm install && \
+ npm run build
+
+
+FROM nginx:1.15.12
+RUN apt-get update && \
+ apt-get install -y dnsmasq
+
+RUN echo "\n\n# Docker extra config \nuser=root\naddn-hosts=/etc/hosts\n" >> /etc/dnsmasq.conf
+
+COPY --from=builder /app/dist/* /usr/share/nginx/html/
+COPY --from=builder /app/dl-admin-nginx.conf /etc/nginx/conf.d/default.conf
+
+CMD service dnsmasq restart && nginx -g "daemon off;"