Skip to content

Commit

Permalink
fix: use forward slashes for paths in Dockerfiles because backward sl…
Browse files Browse the repository at this point in the history
…ash is a special character (#920)

Signed-off-by: Harikrishnan Balagopal <harikrishmenon@gmail.com>
  • Loading branch information
HarikrishnanBalagopal authored Nov 30, 2022
1 parent a1ad63b commit 370e2f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ func (t *WinWebAppDockerfileGenerator) Transform(newArtifacts []transformertypes
IncludeBuildStage: selectedBuildOption == dotnetutils.BUILD_IN_EVERY_IMAGE,
IncludeRunStage: true,
BuildContainerName: imageToCopyFrom,
CopyFrom: copyFrom,
CopyFrom: common.GetUnixPath(copyFrom),
RunStageImageTag: t.getImageTagFromVersion(targetFrameworkVersion),
}

Expand Down

0 comments on commit 370e2f9

Please sign in to comment.