# FROM python:3.9 # # WORKDIR /code # # COPY ./requirements.txt /code/requirements.txt # # RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # # COPY . . # # CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] # FROM grafana/grafana:latest # # ENV GF_SERVER_HTTP_PORT 7860 # # CMD ["grafana-server", "--config=/etc/grafana/grafana.ini", "--homepath=/usr/share/grafana"] # FROM jenkins/jenkins:lts # USER root # # RUN chown -R jenkins:jenkins /var/jenkins_home # ENV JENKINS_OPTS "--httpPort=80" # USER jenkins # # # Install Jenkins plugins using install-plugins.sh # RUN jenkins-plugin-cli --plugins "git:5.2.0 \ # workflow-step-api:639.v6eca_cd8c04a_a_ \ # ssh-credentials:308.ve4497b_ccd8f4 \ # workflow-scm-step:415.v434365564324 \ # docker-plugin:1.5 \ # docker-workflow:572.v950f58993843 \ # " # ENV JENKINS_OPTS="--httpPort=7860" # # # CMD ["java", "-jar", "jenkins.war", "--httpPort=9090"] # CMD ["java", "-jar", "/usr/share/jenkins/jenkins.war", "--httpPort=7860"] FROM apache/superset:latest ENV SUPERSET_PORT=7860