Skip to content

Commit 154fc50

Browse files
authored
Update Dockerfile
1 parent 1751421 commit 154fc50

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Dockerfile

+5-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,15 @@ RUN apt-get update && apt-get install -y \
1313
git \
1414
openssh-server \
1515
sudo \
16-
yq \
1716
jq \
1817
gh \
1918
&& apt-get clean \
2019
&& rm -rf /var/lib/apt/lists/*
21-
20+
21+
# Install yq
22+
RUN wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq && \
23+
chmod +x /usr/bin/yq
24+
2225
# Install Poetry for Python dependency management
2326
RUN pip install --no-cache-dir poetry==1.8.2
2427
# Set environment variables for Poetry

0 commit comments

Comments
 (0)