-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# NOTE: This file is generated automatically via template.py. Do not edit manually! | ||
|
||
|
||
FROM alpine:3.18 as base | ||
|
||
# download zip first to allow for Docker caching | ||
|
||
RUN wget -O d6c4aa208c8345c78a9f68ba6ef911ee94c6a6e1.zip "https://github.com/widberg/msvc8.0/archive/d6c4aa208c8345c78a9f68ba6ef911ee94c6a6e1.zip" | ||
RUN unzip d6c4aa208c8345c78a9f68ba6ef911ee94c6a6e1.zip | ||
|
||
RUN mkdir -p /compilers/win32/msvc8.0/Bin | ||
RUN mkdir -p /compilers/win32/msvc8.0/Include | ||
|
||
RUN cp -r msvc8.0-*/bin/* /compilers/win32/msvc8.0/Bin | ||
RUN cp -r msvc8.0-*/include/* /compilers/win32/msvc8.0/Include | ||
|
||
RUN chown -R root:root /compilers/win32/msvc8.0/ | ||
RUN chmod +x /compilers/win32/msvc8.0/Bin/* | ||
|
||
|
||
FROM scratch as release | ||
|
||
COPY --from=base /compilers /compilers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters