mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 08:01:35 +00:00
16 lines
638 B
Plaintext
16 lines
638 B
Plaintext
FROM ghcr.io/windmill-labs/windmill-ee:dev
|
|
|
|
COPY --from=rust:1.81.0 /usr/local/cargo /usr/local/cargo
|
|
COPY --from=rust:1.81.0 /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"
|
|
|
|
# Oracle DB Client
|
|
COPY --from=ghcr.io/oracle/oraclelinux9-instantclient:23 /usr/lib/oracle/23/client64/lib /opt/oracle/23/lib
|
|
RUN apt-get -y update && apt-get install -y libaio1
|
|
RUN echo /opt/oracle/23/lib > /etc/ld.so.conf.d/oracle-instantclient.conf && ldconfig
|