Skip to content

Commit

Permalink
AYS-491 | All Dependencies Have Been Upgraded and Vulnerabilities Hav…
Browse files Browse the repository at this point in the history
…e Been Fixed
  • Loading branch information
agitrubard committed Sep 27, 2024
1 parent 0198c70 commit 2c10fff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Build stage
FROM maven:3.9.8-amazoncorretto-17-al2023 AS build
FROM maven:3.9.9-amazoncorretto-17-al2023 AS build

# Copy Maven files for dependency resolution
COPY pom.xml ./
Expand All @@ -18,7 +18,7 @@ RUN mvn --settings settings.xml clean install -DskipTests
FROM amazoncorretto:17.0.12-al2023

# Set working directory
WORKDIR ays-be
WORKDIR /app

# Copy the JAR file from the build stage
COPY --from=build target/*.jar /app/ays-be.jar
Expand Down
4 changes: 0 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,6 @@ services:
ports:
- "9790:9790"
environment:
- AYS_DB_USERNAME=ays
- AYS_DB_PASSWORD=ayspass
- AYS_DB_PORT=3307
- AYS_DB_IP=host.docker.internal
- AYS_LIQUIBASE_ENABLE_DROP_FIRST=false
depends_on:
- database
12 changes: 6 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.2</version>
<version>3.3.4</version>
<relativePath/>
</parent>

Expand All @@ -29,20 +29,20 @@
<mysql.version>8.4.0</mysql.version>

<ays-be-encryption-utility.version>1.0.2</ays-be-encryption-utility.version>
<libphonenumber.version>8.13.43</libphonenumber.version>
<libphonenumber.version>8.13.46</libphonenumber.version>
<testcontainers.version>1.20.1</testcontainers.version>
<liquibase.version>4.29.1</liquibase.version>
<liquibase.version>4.29.2</liquibase.version>
<easy-random-core.version>5.0.0</easy-random-core.version>
<mapstruct.version>1.5.5.Final</mapstruct.version>
<mapstruct.version>1.6.2</mapstruct.version>
<lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version>
<jsonwebtoken.version>0.12.6</jsonwebtoken.version>
<bouncycastle.version>1.78.1</bouncycastle.version>

<bucket4j-core.version>8.10.1</bucket4j-core.version>
<guava.version>33.3.0-jre</guava.version>
<guava.version>33.3.1-jre</guava.version>

<objenesis.version>3.3</objenesis.version>
<commons-compress.version>1.27.0</commons-compress.version>
<commons-compress.version>1.27.1</commons-compress.version>
<commons-text.version>1.12.0</commons-text.version>
</properties>

Expand Down

0 comments on commit 2c10fff

Please sign in to comment.