Files
hertzbeat/script/docker/server/Dockerfile

12 lines
171 B
Docker
Raw Normal View History

2022-01-30 10:09:30 +08:00
FROM openjdk:8-alpine
MAINTAINER tomsun28 "tomsun28@outlook.com"
2022-01-30 15:59:27 +08:00
ADD hertz-beat-1.0.tar /opt/
2022-01-30 10:09:30 +08:00
2022-01-30 15:59:27 +08:00
EXPOSE 1157
2022-01-30 10:09:30 +08:00
2022-01-30 15:59:27 +08:00
WORKDIR /opt/hertz-beat/
2022-01-30 10:09:30 +08:00
ENTRYPOINT ["./bin/entrypoint.sh"]