Skip to content

Commit

Permalink
Edit path
Browse files Browse the repository at this point in the history
  • Loading branch information
hiresm committed Dec 4, 2023
1 parent b99e5bc commit 89dcbba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ COPY . .
WORKDIR "/src/AutomatedTestingApp"

FROM build AS publish
RUN dotnet publish "AutomatedTestingApp.csproj" -c Release -o /app/publish /p:UseAppHost=false
RUN dotnet publish "AutomatedTestingApp.csproj" -c Release -o ./app /p:UseAppHost=false

FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
COPY --from=publish ./app .
ENTRYPOINT ["dotnet", "AutomatedTestingApp.dll"]

0 comments on commit 89dcbba

Please sign in to comment.