Files
hoperun-custom-sign/DockerFile

8 lines
198 B
Plaintext
Raw Normal View History

2025-11-06 10:38:22 +08:00
FROM openjdk:8u212-jre-alpine
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"]