diff --git a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.jvm b/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.jvm deleted file mode 100644 index 4a87ac3bf6c56c..00000000000000 --- a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.jvm +++ /dev/null @@ -1,34 +0,0 @@ -#### -# This Dockerfile is used in order to build a container that runs the Quarkus application in JVM mode -# -# Before building the docker image run: -# -# mvn package -# -# Then, build the image with: -# -# docker build -f src/main/docker/Dockerfile.jvm -t quarkus/spring-data-jpa-quickstart-jvm . -# -# Then run the container using: -# -# docker run -i --rm -p 8080:8080 quarkus/spring-data-jpa-quickstart-jvm -# -### -FROM fabric8/java-alpine-openjdk8-jre:1.6.5 -ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager" -ENV AB_ENABLED=jmx_exporter - -# Be prepared for running in OpenShift too -RUN adduser -G root --no-create-home --disabled-password 1001 \ - && chown -R 1001 /deployments \ - && chmod -R "g+rwX" /deployments \ - && chown -R 1001:root /deployments - -COPY target/lib/* /deployments/lib/ -COPY target/*-runner.jar /deployments/app.jar -EXPOSE 8080 - -# run with user 1001 -USER 1001 - -ENTRYPOINT [ "/deployments/run-java.sh" ] \ No newline at end of file diff --git a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.native b/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.native deleted file mode 100644 index 69bd36786b73cc..00000000000000 --- a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/docker/Dockerfile.native +++ /dev/null @@ -1,22 +0,0 @@ -#### -# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode -# -# Before building the docker image run: -# -# mvn package -Pnative -Dquarkus.native.container-build=true -# -# Then, build the image with: -# -# docker build -f src/main/docker/Dockerfile.native -t quarkus/spring-data-jpa-quickstart . -# -# Then run the container using: -# -# docker run -i --rm -p 8080:8080 quarkus/spring-data-jpa-quickstart -# -### -FROM registry.access.redhat.com/ubi8/ubi-minimal -WORKDIR /work/ -COPY target/*-runner /work/application -RUN chmod 775 /work -EXPOSE 8080 -CMD ["./application", "-Dquarkus.http.host=0.0.0.0"] \ No newline at end of file diff --git a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/resources/META-INF/resources/index.html b/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/resources/META-INF/resources/index.html deleted file mode 100644 index b837d35e816616..00000000000000 --- a/integration-tests/spring-data-jpa/src/it/spring-configuration/src/main/resources/META-INF/resources/index.html +++ /dev/null @@ -1,152 +0,0 @@ - - -
- -Congratulations, you have created a new Quarkus application.
- -This page is served by Quarkus. The source is in
- src/main/resources/META-INF/resources/index.html
.
If not already done, run the application in dev mode using: mvn compile quarkus:dev
.
-
src/main/java
.src/main/resources/META-INF/resources
.src/main/resources/application.properties
.
- Just delete the src/main/resources/META-INF/resources/index.html
file.