a7157bcc zb

jenkins

0 个父辈
1 FROM docker.77s.vip/java:2.0.0
2
3 COPY app.jar .
4
5 ENV JAVA_OPTS ""
6
7 EXPOSE 8080
8
9 CMD java -jar ${JAVA_OPTS} app.jar
...\ No newline at end of file ...\ No newline at end of file
1 FROM hub.77s.vip/tomcat:8.15.2
2
3 RUN rm -rf /usr/local/tomcat/webapps/*
4
5 COPY ROOT.war /usr/local/tomcat/webapps/
...\ No newline at end of file ...\ No newline at end of file
1 FROM docker.77s.vip/nginx:2.0.0
2
3 COPY ./build/ /usr/share/nginx/html
...\ No newline at end of file ...\ No newline at end of file
1 FROM docker.77s.vip/nginx:2.0.0
2
3 COPY ./dist/ /usr/share/nginx/html
...\ No newline at end of file ...\ No newline at end of file
1 FROM docker.77s.vip/tomcat:2.0.0
2
3 RUN rm -rf /usr/local/tomcat/webapps/*
4
5 COPY ROOT.war /usr/local/tomcat/webapps/
...\ No newline at end of file ...\ No newline at end of file
1 FROM docker.77s.vip/tomcat:2.0.2
2
3 RUN rm -rf /usr/local/tomcat/webapps/*
4
5 COPY ROOT.war /usr/local/tomcat/webapps/
6
7 RUN chown -R tomcat:tomcat /usr/local/java \
8 && chown -R tomcat:tomcat /usr/local/tomcat
9
10 USER tomcat
...\ No newline at end of file ...\ No newline at end of file