diff --git a/.drone.yml b/.drone.yml index 61b3cc1..291ff01 100644 --- a/.drone.yml +++ b/.drone.yml @@ -48,7 +48,7 @@ steps: dockerfile: Sources/DockerfileRestFull context: Sources registry: hub.codefirst.iut.uca.fr - repo: hub.codefirst.iut.uca.fr/victor_perez.ngounou/BowlingGameAPI + repo: hub.codefirst.iut.uca.fr/victor_perez.ngounou/bowling-api-rest username: from_secret: SECRET_REGISTRY_USERNAME password: @@ -62,7 +62,7 @@ steps: dockerfile: Sources/Bowling Api Gateway/Dockerfile context: Sources/DockerfileGateway registry: hub.codefirst.iut.uca.fr - repo: hub.codefirst.iut.uca.fr/victor_perez.ngounou/BowlingGameAPI + repo: hub.codefirst.iut.uca.fr/victor_perez.ngounou/bowling-api-gateway username: from_secret: SECRET_REGISTRY_USERNAME password: diff --git a/Sources/DockerfileGateway b/Sources/DockerfileGateway index 225bdf0..bda8ac9 100644 --- a/Sources/DockerfileGateway +++ b/Sources/DockerfileGateway @@ -5,7 +5,7 @@ EXPOSE 443 FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build WORKDIR /src -COPY ["Sources/Bowling Api Gateway/Bowling Api Gateway.csproj", "Bowling Api Gateway/"] +COPY ["Bowling Api Gateway/Bowling Api Gateway.csproj", "Bowling Api Gateway/"] RUN dotnet restore "Bowling Api Gateway/Bowling Api Gateway.csproj" COPY . . WORKDIR "/src/Bowling Api Gateway"