wibo/Dockerfile
Mark Street b9f6c4c64e
Add support for SN compilers (#4)
* More kernel32 functions implemented poorly

* fix a smattering of issues to make cc1n64 work

* fix issues breaking psyq aspsx

* Return lowercase Windows paths if uppercase path doesnt exist

* Add SetStdHandle

* Add super naive FormatMessageA

* Case insensitive file matching

* PR comments

* Adding CompareString* + SetEnvironmentVariableA functions

Co-authored-by: Ash Wolf <ninji@wuffs.org>
Co-authored-by: Simon Lindholm <simon.lindholm10@gmail.com>
2022-07-03 23:27:48 +09:00

24 lines
417 B
Docker

FROM ubuntu:22.04 as build
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
g++ \
g++-multilib \
make
COPY . /wibo
RUN make -C /wibo
FROM ubuntu:22.04
RUN dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
libstdc++6:i386
COPY --from=build /wibo/wibo /usr/local/sbin/wibo
CMD /usr/local/sbin/wibo