5 lines
181 B
Docker
5 lines
181 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine
|
|
RUN dotnet workload install wasm-tools
|
|
RUN apk add --no-cache --no-progress bash
|
|
RUN ln -sf /bin/bash /bin/sh
|
|
CMD ["/bin/bash"]
|