Files
2026-07-10 10:59:01 +08:00

14 lines
429 B
Docker
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# ============================================================
# Dockerfile — violin-authfor drone in kubernetes
# ============================================================
FROM gitea.violin-work.online/registry/eclipse-temurin:22-jre
# set timezone
ENV TZ=Asia/Shanghai LANG=C.UTF-8
WORKDIR /app
COPY target/violin-iam-*.jar /app/app.jar
USER 1000
ENTRYPOINT ["sh", "-c", "exec java $JAVA_OPTS -jar /app/app.jar"]