From b4b747a5d0cd4c7ad439bf0030f3a84e7d4bf975 Mon Sep 17 00:00:00 2001 From: Amit Kumar Nandi <11887616+aamitn@users.noreply.github.com> Date: Thu, 22 Feb 2024 04:53:55 +0530 Subject: [PATCH] Modified test classes added gitignore for testng generated test-output folder --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 30870d6..1d5fee0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ WORKDIR /URLShortener # Example real world db access url : mysql://127.0.0.1:3306 # Example Docker db access url : mysql://database:3306 (container name is datbase) # Change the database ip in app config to the database docker container name/service -RUN sed -i "s|database.ip=127.0.0.1|database.ip=database |g" src/main/resources/application.properties +# RUN sed -i "s|database.ip=127.0.0.1|database.ip=database |g" src/main/resources/application.properties # Build the application RUN mvn clean install