mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
0cf4ad1ef6
* Add helm and AWS cli to main image * Add internal build * Move dockerfile location * Capitalize helm Co-authored-by: martys <44445285+martysmojo@users.noreply.github.com>
16 lines
589 B
Plaintext
16 lines
589 B
Plaintext
FROM ghcr.io/windmill-labs/windmill:main
|
|
|
|
RUN wget https://get.helm.sh/helm-v3.10.1-linux-amd64.tar.gz && \
|
|
tar -zxvf helm-v3.10.1-linux-amd64.tar.gz && \
|
|
mv linux-amd64/helm /usr/local/bin/helm &&\
|
|
chmod +x /usr/local/bin/helm
|
|
|
|
RUN curl -LO "https://dl.k8s.io/release/v1.23.6/bin/linux/amd64/kubectl" && \
|
|
install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
|
|
|
|
RUN apt-get update && apt install unzip && curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
|
|
unzip awscliv2.zip && \
|
|
./aws/install
|
|
|
|
CMD ["./windmill"]
|