Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions apps/updateserver/ApplicationProxy.cfc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
component extends="application" {

}
3 changes: 3 additions & 0 deletions apps/updateserver/rest/Application.cfc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
component extends="ApplicationProxy" {
// REST cfcs only look for an application.cfc in the same directory
}
5 changes: 4 additions & 1 deletion devops/Dockerfile.base
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
FROM lucee/lucee:6.0.3.1-tomcat9.0-jdk11-temurin-jammy
# FROM lucee/lucee:6.0.3.1-tomcat9.0-jdk11-temurin-jammy
# FROM lucee/lucee:6.1.1.118-nginx-tomcat9.0-jdk11-temurin-jammy
# 293 fails, 283 works
FROM lucee/lucee:6.2.0.283-SNAPSHOT-nginx-tomcat10.1-jre21-temurin-jammy
ADD https://repo1.maven.org/maven2/io/prometheus/jmx/jmx_prometheus_javaagent/0.20.0/jmx_prometheus_javaagent-0.20.0.jar /opt/lucee/bin/prometheus-java-agent.jar
ENV JAVA_OPTS="-javaagent:/opt/lucee/bin/prometheus-java-agent.jar=9090:/opt/lucee/conf/prometheus/config.yml"
ENV LUCEE_ADMIN_ENABLED=false
Expand Down
Loading