Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
clpm
clpm
Commits
1062a397
Commit
1062a397
authored
Feb 24, 2020
by
Eric Timmons
Browse files
Fix Windows dockerfile
Make windows version configurable through build ard and install ASDF
parent
d48e133e
Changes
1
Hide whitespace changes
Inline
Side-by-side
docker/Dockerfile.windows
View file @
1062a397
...
...
@@ -3,7 +3,8 @@
# This software is part of CLPM. See README.org for more information. See
# LICENSE for license information.
FROM daewok/sbcl:2.0.0-windowsservercore-ltsc2019
ARG windows_version=1909
FROM daewok/sbcl:2.0.1-windowsservercore-$windows_version
WORKDIR "C:/"
...
...
@@ -30,6 +31,13 @@ RUN Write-Host "Starting download"; \
cd wix/bin; \
unzip ../../wix311-binaries.zip;
# Install ASDF.
ENV ASDF_VERSION=3.3.4
RUN cmd /c curl -o asdf.tar.gz https://common-lisp.net/project/asdf/archives/asdf-$Env:ASDF_VERSION.tar.gz; \
tar -x -v -f asdf.tar.gz; \
sbcl --disable-debugger --load "asdf-$Env:ASDF_VERSION/tools/load-asdf.lisp" --load "asdf-$Env:ASDF_VERSION/uiop/uiop.asd" --load "asdf-$Env:ASDF_VERSION/tools/install-asdf.lisp" --quit
WORKDIR C:/
COPY .git C:/clpm-git
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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