Files
hoperun-custom-sign/DockerFile
2025-10-30 13:24:47 +08:00

8 lines
190 B
Plaintext

FROM openjdk:8-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"]