Docker-compose down and up redownloads from maven repository

I have docker-compose file.

version: '3'
services:
  my-application-service:
    image: 'my-application-image:v1.0'
    build: .
    container_name: my-application-container
    ports:
      - 8090:8090
    volumes:
      - /home/bob/Desktop/project/jenkins/workspace/My-Application:/app

and a Dockerfile

    #### BUILD image ###
    FROM maven:3-jdk-11 as builder
    RUN mkdir -p /build
    WORKDIR /build
    COPY pom.xml /build
    RUN mvn -B dependency:resolve dependency:resolve-plugins
    COPY /src /build/src
    RUN mvn package

    ### RUN ###
    FROM openjdk:11-slim as runtime
    EXPOSE 8080
    ENV APP_HOME /app
    ENV JAVA_OPTS=""

    RUN mkdir $APP_HOME
    RUN mkdir $APP_HOME/config
    RUN mkdir $APP_HOME/log

    RUN mkdir $APP_HOME/src

    VOLUME $APP_HOME/log
    VOLUME $APP_HOME/config

    WORKDIR $APP_HOME

    COPY --from=builder /build/src  $APP_HOME/src
    COPY --from=builder /build/target $APP_HOME/target
    COPY --from=builder /build/target/*.jar app.jar

    ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar app.jar" ]

I use docker-compose down and up to spin up the container and bring it down. Everytime it spins up, it downloads all the dependency as specified in the pom.xml from the maven central repository. This takes very long. How can i not do this? eg cache the dependency or something? I am new to this. Thanks!