Files
hoperun-custom-sign/DockerFile
T

8 lines
187 B
Docker
Raw Normal View History

2025-03-21 15:16:09 +08:00
FROM openjdk:8-jre
LABEL name="hoperun-custom-sign"
MAINTAINER li@2ha.me
WORKDIR /
ADD target/hoperun-sign-1.0-SNAPSHOT.jar app.jar
EXPOSE 8982
ENTRYPOINT ["java", "-jar"]
CMD ["app.jar"]