forked from n.nasr/skills
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
493 B
22 lines
493 B
jib {
|
|
from {
|
|
image = "adoptopenjdk:11-jre-hotspot"
|
|
}
|
|
to {
|
|
image = "skills:latest"
|
|
}
|
|
container {
|
|
entrypoint = ["bash", "-c", "/entrypoint.sh"]
|
|
ports = ["3006"]
|
|
environment = [
|
|
SPRING_OUTPUT_ANSI_ENABLED: "ALWAYS",
|
|
JHIPSTER_SLEEP: "0"
|
|
]
|
|
creationTime = "USE_CURRENT_TIMESTAMP"
|
|
}
|
|
extraDirectories {
|
|
paths = file("src/main/jib")
|
|
permissions = ["/entrypoint.sh": "755"]
|
|
}
|
|
}
|
|
|