Files
hoperun-custom-sign/DockerFile
2025-11-06 10:38:22 +08:00

8 lines
198 B
Plaintext

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"]