#base image
FROM  centos7-java1.8

#Maintainer
MAINTAINER   904790581@qq.com

#RUN
RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN echo "Asia/Shanghai">/etc/timezone

#add file
ADD sgms-app.jar /usr/local
ADD app-supervisor.ini /etc/supervisord.d/
ADD supervisord.conf /etc/supervisord.conf

#port
EXPOSE 22 8884

#CMD
CMD ["/usr/bin/supervisord","-c","/etc/supervisord.conf"]

相关文章:

  • 2021-09-22
  • 2021-07-06
  • 2021-12-29
  • 2022-01-06
  • 2022-02-23
  • 2022-12-23
猜你喜欢
  • 2021-12-13
  • 2021-07-15
  • 2022-12-23
  • 2021-10-11
  • 2022-01-20
  • 2022-12-23
  • 2021-04-05
相关资源
相似解决方案