2023-08-12 11:09:47 +00:00
|
|
|
FROM fedora:38
|
2021-11-02 11:52:34 +00:00
|
|
|
|
2022-09-11 20:45:57 +00:00
|
|
|
ADD ceperka-ca.crt /etc/pki/ca-trust/source/anchors/
|
|
|
|
ADD rosti-ca.crt /etc/pki/ca-trust/source/anchors/
|
|
|
|
|
2021-11-02 11:52:34 +00:00
|
|
|
RUN dnf -y upgrade --refresh
|
2023-08-12 11:34:34 +00:00
|
|
|
RUN dnf -y install python3.9 python3.10 python3-pip pipenv fish helm awscli ansible podman podman-docker git git-lfs jq make openssh nodejs npm golang sqlite rsync wget
|
2021-11-02 11:52:34 +00:00
|
|
|
# kubectl terraform
|
|
|
|
RUN dnf -y groupinstall "Development Tools"
|
2023-09-19 11:11:21 +00:00
|
|
|
RUN wget https://github.com/go-task/task/releases/download/v3.30.1/task_linux_amd64.rpm && dnf localinstall -y task_linux_amd64.rpm && rm task_linux_amd64.rpm
|
2022-09-11 20:45:57 +00:00
|
|
|
RUN update-ca-trust
|