处理积分下单,及退款

This commit is contained in:
朱耘稷
2021-01-06 20:29:16 +08:00
committed by xuwenbo
parent d6eab7adff
commit 89babb8247
11 changed files with 217 additions and 119 deletions

18
yshop-app/Dockerfile Normal file
View File

@ -0,0 +1,18 @@
FROM anapsix/alpine-java:8_server-jre_unlimited
MAINTAINER wangiegie@gmail.com
ENV TZ=Asia/Shanghai
ENV JAVA_OPTS="-Xms128m -Xmx256m -Djava.security.egd=file:/dev/./urandom"
RUN ln -sf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN mkdir -p /yshop-app
WORKDIR /yshop-app
EXPOSE 8008
ADD ./target/yshop-app-3.1.jar ./
CMD java $JAVA_OPTS -jar yshop-app-3.1.jar --spring.profiles.active=dev