Skip to content

Commit

Permalink
Update dotnet command in Docker action script
Browse files Browse the repository at this point in the history
Altered the dotnet command in the Docker action script to create a new class library in a project-specific directory. This change improves directory organization by ensuring each project's class library has its own separate folder.
  • Loading branch information
PiotrFerenc committed Jun 1, 2024
1 parent cd37987 commit ded06ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-action/dotnet/create-classlib
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ WORKDIR /app

ENV PROJECT_NAME=test

CMD dotnet new classlib -n ${PROJECT_NAME} -o /data
CMD dotnet new classlib -n ${PROJECT_NAME} -o /data/${PROJECT_NAME}

0 comments on commit ded06ba

Please sign in to comment.