dashboard
repositories
filestore
activity
search
login
trunk
/
cmci/cmci-bank-pfcs
浦发银行长沙分行端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
浦发分行账单服务对外接口调整
wanghc
2023-03-08
65d297b263d224e2d84d4d2ab941da36544e8d23
[trunk/cmci/cmci-bank-pfcs.git]
/
cmci-pfcs-gateway
/
src
/
main
/
docker
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
#FROM java:8 太大了660多M 用下面这个120多M
FROM openjdk:8-jdk-alpine
MAINTAINER whc
WORKDIR /home
VOLUME /logs
RUN mkdir -p /hom/cmci
ADD cmci-pfcs-gateway.jar /home/cmci/cmci-pfcs-gateway.jar
EXPOSE 8400
ENTRYPOINT ["java","-server","-Xms128M","-Xmx512M","-Xss512k","-Duser.timezone=GMT+8","-jar", "/home/cmci/cmci-pfcs-gateway.jar"]