Skip to content

Commit 362248c

Browse files
committed
#1 Move the debug script to the scripts folder
1 parent ff15327 commit 362248c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Source/MiniNugetServer/Start-DockerDebug.ps1 renamed to Scripts/Start-DockerDebug.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
$imageName="asarafian/mininugetserver"
2+
$dockerFilePath="$PSScriptRoot/../Source/MiniNugetServer"
23

34
# Build the image
45
$arguments=@(
56
"build"
67
"-t"
78
$imageName
89
"-f"
9-
"$PSScriptRoot/MiniNugetServer.dockerfile"
10-
$PSScriptRoot
10+
"$dockerFilePath/MiniNugetServer.dockerfile"
11+
$dockerFilePath
1112
)
1213
& docker $arguments 2>&1
1314

Source/MiniNugetServer/MiniNugetServer.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Docker", "Docker", "{87497B0F-FBCE-4BE1-80FA-152F8A4D4EC2}"
99
ProjectSection(SolutionItems) = preProject
1010
MiniNugetServer.dockerfile = MiniNugetServer.dockerfile
11+
Set-Configuration.ps1 = Set-Configuration.ps1
1112
EndProjectSection
1213
EndProject
1314
Global

0 commit comments

Comments
 (0)