We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ac8cdc commit 0a60595Copy full SHA for 0a60595
2 files changed
Dockerfile
@@ -0,0 +1,4 @@
1
+FROM bitnami/wildfly:23.0.2
2
+VOLUME /tmp
3
+ARG EAR_FILE
4
+ADD carrental-ear/target/${EAR_FILE} opt/bitnami/wildfly/standalone/deployments/app.ear
buildDocker.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+#./mvnw clean install -Dnpm.test.script=test-chromium
+./mvnw clean install -Ddocker=true
+docker build -t angular2guy/angular2andjavaee:latest --build-arg EAR_FILE=carrental-ear.ear --no-cache .
5
+docker run --name=mywildfly -p 8080:8080 -e WILDFLY_PASSWORD=my_password --memory="512m" --cpus=1.0 angular2guy/angular2andjavaee:latest
0 commit comments