mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
11 lines
369 B
Plaintext
11 lines
369 B
Plaintext
FROM ghcr.io/windmill-labs/windmill:dev
|
|
|
|
COPY --from=rust:1.80.1 /usr/local/cargo /usr/local/cargo
|
|
COPY --from=rust:1.80.1 /usr/local/rustup /usr/local/rustup
|
|
|
|
RUN pip3 install ansible
|
|
|
|
COPY --from=bitnami/dotnet-sdk:9.0.101-debian-12-r0 /opt/bitnami/dotnet-sdk /opt/dotnet-sdk
|
|
RUN ln -s /opt/dotnet-sdk/bin/dotnet /usr/bin/dotnet
|
|
ENV DOTNET_ROOT="/opt/dotnet-sdk/bin"
|