add repo remote url

This commit is contained in:
Alexandros Mandilaras 2024-01-18 15:11:19 +02:00
parent 12132060fe
commit 71f4e9d6da
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
####################################### Build stage #######################################
FROM maven:3.6.3-openjdk-11-slim AS build-stage
FROM maven:3.6.3-openjdk-11-slim
COPY . /build/
WORKDIR /build/
RUN mvn clean package -DskipTests
RUN mvn clean package -DskipTests -Dmaven.repo.remote="https://crepo.cite.gr/repository/cite-maven/"
ARG CREPO_BINARIES_REPO_URL
ARG CREPO_BINARIES_CREDENTIAL
@ -15,4 +15,4 @@ ENV BUILD_VERSION=$BUILD_VERSION
RUN curl --location --request PUT "${CREPO_BINARIES_REPO_URL}opendmp/repository-jars/zenodo/zenodo-deposit-${BUILD_VERSION}.jar" \
--header "Authorization: Basic ${CREPO_BINARIES_CREDENTIAL}" \
--header "Content-Type: application/json" \
--data-binary "@/build/target/repositorydepositzenodo-1.0.0-SNAPSHOT.jar"
--data-binary "@/build/target/repositorydepositzenodo-2.0.0.jar"