File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1+ # NOTE: This file is generated automatically via template.py. Do not edit manually!
2+
3+
4+ FROM alpine:3.18 as base
5+
6+ RUN mkdir -p /compilers/msdos/bcc3.1
7+
8+ RUN wget -O bcc3.1.tar.gz "https://github.com/decompme/compilers/releases/download/compilers/bcc3.1.tar.gz"
9+ RUN tar xvzf bcc3.1.tar.gz -C /compilers/msdos/bcc3.1
10+
11+ RUN chown -R root:root /compilers/msdos/bcc3.1/
12+ RUN chmod +x /compilers/msdos/bcc3.1/*
13+
14+
15+ FROM scratch as release
16+
17+ COPY --from=base /compilers /compilers
Original file line number Diff line number Diff line change @@ -882,6 +882,10 @@ compilers:
882882 platform : msdos
883883 template : common/default
884884 file : https://github.com/OmniBlade/decomp.me/releases/download/wcc10.5/wcc11.0.tar.gz
885+ - id : bcc3.1
886+ platform : msdos
887+ template : common/default
888+ file : https://github.com/decompme/compilers/releases/download/compilers/bcc3.1.tar.gz
885889
886890# WIN32
887891 - id : msvc6.0
You can’t perform that action at this time.
0 commit comments