Files
hoperun-custom-sign/DockerFile

8 lines
202 B
Plaintext
Raw Permalink Normal View History

2026-03-19 15:18:52 +08:00
FROM eclipse-temurin:8-jdk-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"]