tonne commited on
Commit
9a56853
1 Parent(s): 4381ae4

change to superset

Browse files
Files changed (1) hide show
  1. Dockerfile +21 -16
Dockerfile CHANGED
@@ -15,22 +15,27 @@
15
  #
16
  # CMD ["grafana-server", "--config=/etc/grafana/grafana.ini", "--homepath=/usr/share/grafana"]
17
 
18
- FROM jenkins/jenkins:lts
19
- USER root
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
- RUN chown -R jenkins:jenkins /var/jenkins_home
22
- ENV JENKINS_OPTS "--httpPort=80"
23
- USER jenkins
24
 
25
- # Install Jenkins plugins using install-plugins.sh
26
- RUN jenkins-plugin-cli --plugins "git:5.2.0 \
27
- workflow-step-api:639.v6eca_cd8c04a_a_ \
28
- ssh-credentials:308.ve4497b_ccd8f4 \
29
- workflow-scm-step:415.v434365564324 \
30
- docker-plugin:1.5 \
31
- docker-workflow:572.v950f58993843 \
32
- "
33
- ENV JENKINS_OPTS="--httpPort=7860"
34
 
35
- # CMD ["java", "-jar", "jenkins.war", "--httpPort=9090"]
36
- CMD ["java", "-jar", "/usr/share/jenkins/jenkins.war", "--httpPort=7860"]
 
15
  #
16
  # CMD ["grafana-server", "--config=/etc/grafana/grafana.ini", "--homepath=/usr/share/grafana"]
17
 
18
+ # FROM jenkins/jenkins:lts
19
+ # USER root
20
+ #
21
+ # RUN chown -R jenkins:jenkins /var/jenkins_home
22
+ # ENV JENKINS_OPTS "--httpPort=80"
23
+ # USER jenkins
24
+ #
25
+ # # Install Jenkins plugins using install-plugins.sh
26
+ # RUN jenkins-plugin-cli --plugins "git:5.2.0 \
27
+ # workflow-step-api:639.v6eca_cd8c04a_a_ \
28
+ # ssh-credentials:308.ve4497b_ccd8f4 \
29
+ # workflow-scm-step:415.v434365564324 \
30
+ # docker-plugin:1.5 \
31
+ # docker-workflow:572.v950f58993843 \
32
+ # "
33
+ # ENV JENKINS_OPTS="--httpPort=7860"
34
+ #
35
+ # # CMD ["java", "-jar", "jenkins.war", "--httpPort=9090"]
36
+ # CMD ["java", "-jar", "/usr/share/jenkins/jenkins.war", "--httpPort=7860"]
37
 
38
+ FROM apache/superset:latest
 
 
39
 
40
+ ENV SUPERSET_PORT=7860
 
 
 
 
 
 
 
 
41