From e3f60e2fb6462951e617295244c643788f11014b Mon Sep 17 00:00:00 2001 From: ThanKarab <tkarabatsis@hotmail.com> Date: Thu, 20 Jul 2023 02:46:34 -0700 Subject: [PATCH] Fix for jar in dockerfile not working. --- README.md | 2 +- pom.xml | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d1a47f05c..e1b55c95e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ To run the backend using an IDE for development, such as IntelliJ, you need a running instance of PostgreSQL. ## Deployment (using a Docker image) -Build the image: ` docker build -t hbpmip/portal-backend:latest .` +Build the image: `docker build -t hbpmip/portal-backend:latest .` To use this image, you need a running instance of PostgreSQL and to configure the software using the following environment variables. diff --git a/pom.xml b/pom.xml index 66d712a10..ea12ba308 100644 --- a/pom.xml +++ b/pom.xml @@ -147,6 +147,11 @@ <filtering>true</filtering> </resource> </resources> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + </plugin> + </plugins> </build> - </project> -- GitLab