Skip to content

Commit 307ec5d

Browse files
committed
adds yq
1 parent 3a4b6d2 commit 307ec5d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Dockerfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,14 @@ RUN microdnf install -y curl tar && \
1010
FROM rockylinux:9.3-minimal
1111

1212
# Install runtime dependencies
13-
RUN microdnf install -y --nodocs nodejs && \
13+
RUN microdnf install -y --nodocs nodejs wget && \
1414
microdnf clean all
1515

16+
# install yq
17+
RUN wget https://github.com/mikefarah/yq/releases/download/v4.44.5/yq_linux_amd64 -O /usr/bin/yq && \
18+
chmod +x /usr/bin/yq
19+
20+
1621
# Set up a default user and home directory
1722
ENV HOME=/home/wrapper
1823

0 commit comments

Comments
 (0)