Skip to content

Commit

Permalink
feat: yq package installation (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmorini-dxc authored Nov 26, 2024
1 parent 1910207 commit 5616475
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ RUN apt-get update
RUN apt-get install nodejs -y
RUN node -v

# Install yq
RUN curl -L https://github.com/mikefarah/yq/releases/download/v4.35.2/yq_linux_amd64 -o /usr/local/bin/yq && chmod +x /usr/local/bin/yq
# Verify yq installation
RUN yq --version

RUN useradd github && \
mkdir -p /home/github && \
chown -R github:github /home/github && \
Expand Down

0 comments on commit 5616475

Please sign in to comment.