update docker actions of maven workflow (#139)

This commit is contained in:
dxfeng10
2021-04-25 15:54:16 +08:00
committed by GitHub
parent 29724e295c
commit bee7f22de0
3 changed files with 21 additions and 21 deletions

View File

@@ -1,17 +0,0 @@
FROM java:8
MAINTAINER fizzgate.com
ENV APP_HOME_PATH /opt/fizz-gateway-community
ADD target/fizz-bootstrap-*.jar ${APP_HOME_PATH}/fizz-gateway-community.jar
COPY sh/boot.sh ${APP_HOME_PATH}/boot.sh
COPY sh/docker-entrypoint.sh ${APP_HOME_PATH}/docker-entrypoint.sh
RUN chmod +x ${APP_HOME_PATH}/boot.sh
WORKDIR ${APP_HOME_PATH}
EXPOSE 8600
ENTRYPOINT ["/bin/bash", "./docker-entrypoint.sh"]