diff --git a/platforms/msdos/bcc3.1/Dockerfile b/platforms/msdos/bcc3.1/Dockerfile new file mode 100644 index 0000000..46548f0 --- /dev/null +++ b/platforms/msdos/bcc3.1/Dockerfile @@ -0,0 +1,17 @@ +# NOTE: This file is generated automatically via template.py. Do not edit manually! + + +FROM alpine:3.18 as base + +RUN mkdir -p /compilers/msdos/bcc3.1 + +RUN wget -O bcc3.1.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/bcc3.1.tar.gz" +RUN tar xvzf bcc3.1.tar.gz -C /compilers/msdos/bcc3.1 + +RUN chown -R root:root /compilers/msdos/bcc3.1/ +RUN chmod +x /compilers/msdos/bcc3.1/* + + +FROM scratch as release + +COPY --from=base /compilers /compilers diff --git a/values.yaml b/values.yaml index 25ad96c..65f1d6b 100644 --- a/values.yaml +++ b/values.yaml @@ -882,6 +882,10 @@ compilers: platform: msdos template: common/default file: https://github.com/OmniBlade/decomp.me/releases/download/wcc10.5/wcc11.0.tar.gz + - id: bcc3.1 + platform: msdos + template: common/default + file: https://github.com/decompme/compilers/releases/download/compilers/bcc3.1.tar.gz # WIN32 - id: msvc6.0