Skip to content

Commit 349d5ce

Browse files
committed
chore(docker): add docker image for cf 2018
1 parent a5e8e48 commit 349d5ce

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

examples/docker/Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@ endif
99
prep-jar:
1010
cp ../../agent/target/agent-1.0-SNAPSHOT.jar ./$(COMPONENT)/deep.jar
1111

12+
.PHONY: prep-cf
13+
prep-cf:
14+
cp ../../it-tests/cf-tests/src/test/cfml/testFile.cfm ./$(COMPONENT)/testFile.cfm
15+
cp ../../it-tests/cf-tests/src/test/resources/jvm.config ./$(COMPONENT)/jvm.config
16+
1217
.PHONY: docker
13-
docker: check-component prep-jar
18+
docker: check-component prep-jar prep-cf
1419
docker build -t ghcr.io/intergral/deep:$(COMPONENT) -f $(COMPONENT)/Dockerfile ./$(COMPONENT)
1520

1621
.PHONY: coldfusion
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jvm.config
2+
testFile.cfm
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM adobecoldfusion/coldfusion:latest-2018
2+
3+
ADD jvm.config /opt/coldfusion/cfusion/bin/jvm.config
4+
ADD testFile.cfm /app/CTA/tests/testFile.cfm
5+
ADD deep.jar /opt/deep/deep.jar

0 commit comments

Comments
 (0)