[docker] Add python3 to iceshrimp/dotnet-sdk:9.0-alpine-wasm

This partially fixes AOT docker builds (it doesn't fix the emcc segfault, though)
This commit is contained in:
Laura Hausmann 2024-11-18 19:37:11 +01:00
parent 0ee5ff377e
commit 8d469b07df
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -1,5 +1,5 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine
RUN dotnet workload install wasm-tools
RUN apk add --no-cache --no-progress bash
RUN apk add --no-cache --no-progress bash python3
RUN ln -sf /bin/bash /bin/sh
CMD ["/bin/bash"]