Skip to content

Commit

Permalink
Add git as dependency for test container
Browse files Browse the repository at this point in the history
  • Loading branch information
jamacku committed Jul 11, 2022
1 parent 081f3da commit 1913e98
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/linters/.hadolint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---

failure-threshold: warning

ignored:
- DL3041
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
FROM fedora:latest
FROM fedora:36

RUN dnf -y update
RUN dnf -y install csdiff git ShellCheck
RUN dnf -y update \
&& dnf -y install csdiff git ShellCheck \
&& dnf clean all

RUN mkdir -p /action
WORKDIR /action
Expand Down
7 changes: 4 additions & 3 deletions test/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM fedora:latest
FROM fedora:36

RUN dnf -y update
RUN dnf -y install kcov bats
RUN dnf -y update \
&& dnf -y install git kcov bats \
&& dnf clean all

0 comments on commit 1913e98

Please sign in to comment.