Skip to content

Commit

Permalink
install yamllint, yq and jq
Browse files Browse the repository at this point in the history
  • Loading branch information
mircea-pavel-anton committed Aug 26, 2024
1 parent f9ba8e4 commit aa95e01
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ RUN DEBIAN_FRONTEND=noninteractive \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

COPY requirements.txt /tmp/requirements.txt
RUN pip install --upgrade pip && \
pip install -r /tmp/requirements.txt

# Enable passwordless sudo :kek:
RUN echo 'vscode ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers

Expand Down
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
yamllint==1.35.1
jq==1.8.0
yq==3.4.3

0 comments on commit aa95e01

Please sign in to comment.