Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cl-docker-images
ccl
Commits
a954d94a
Commit
a954d94a
authored
Oct 30, 2020
by
Eric Timmons
Browse files
Fix windows Dockerfile typos
parent
481002b1
Changes
1
Hide whitespace changes
Inline
Side-by-side
1.12/windowsservercore/ltsc2019/windows-amd64/Dockerfile
View file @
a954d94a
...
...
@@ -12,7 +12,7 @@ RUN $srcurl = ('https://github.com/Clozure/ccl/releases/download/v{0}/ccl-{0}-wi
Invoke-WebRequest -Uri $srcurl -OutFile ccl.zip -UserAgent "NativeHost"; `
Write-Host 'Done downloading'; `
$expectedsha256 = 'F1BA6CFF353F6E6E13828F41DC92A723C01766AE38DCFF774905C9E02D59ED04'; `
$actualsha256 = (Get-FileHash ccl
-
zip -Algorithm sha256).Hash; `
$actualsha256 = (Get-FileHash ccl
.
zip -Algorithm sha256).Hash; `
Write-Host ('Verifying sha256 {0} (expected: {1})' -f $actualsha256, $expectedsha256); `
if ($actualsha256 -ne $expectedsha256) { `
Write-Host 'SHA256 check FAILED!'; `
...
...
@@ -28,6 +28,6 @@ RUN $machineKey = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey('SYSTEM\Co
$machinePath = $machineKey.GetValue('PATH', [string]::Empty, 'DoNotExpandEnvironmentNames').ToString(); `
$newPath = ('C:\Program Files\ccl;{0}' -f $machinePath) `
$machineKey.SetValue('PATH', $newPath, 'ExpandString'); `
$machineKey.Close();
`
$machineKey.Close();
CMD
["ccl"]
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment