Compare commits
6 Commits
0.0.1
...
143d912da8
| Author | SHA1 | Date | |
|---|---|---|---|
| 143d912da8 | |||
| edeb0d808e | |||
| 8fcc4bb189 | |||
|
|
af91b2be02 | ||
| ed2eef5cee | |||
|
|
880ac28eb6 |
10
Dockerfile
10
Dockerfile
@@ -10,8 +10,16 @@ RUN dnf update -y && \
|
|||||||
wget \
|
wget \
|
||||||
which \
|
which \
|
||||||
vim \
|
vim \
|
||||||
|
jq \
|
||||||
|
createrepo_c \
|
||||||
python3-pip && \
|
python3-pip && \
|
||||||
dnf group install -y "Development Tools" && \
|
dnf group install -y "Development Tools" && \
|
||||||
dnf clean all
|
dnf clean all && \
|
||||||
|
case "$(uname -m)" in \
|
||||||
|
x86_64) wget "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64" -O /usr/local/bin/yq ;; \
|
||||||
|
aarch64) wget "https://github.com/mikefarah/yq/releases/latest/download/yq_linux_arm64" -O /usr/local/bin/yq ;; \
|
||||||
|
*) echo "Unsupported architecture: $ARCH" && exit 1 ;; \
|
||||||
|
esac && \
|
||||||
|
chmod +x /usr/local/bin/yq
|
||||||
|
|
||||||
CMD ["/bin/bash"]
|
CMD ["/bin/bash"]
|
||||||
Reference in New Issue
Block a user