forked from 0xricksanchez/like-dbg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from 0xricksanchez/main
Minor QoL changes (0xricksanchez#132)
- Loading branch information
Showing
28 changed files
with
855 additions
and
300 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ LABEL maintainer="Christopher Krah <[email protected]>" | |
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
SHELL ["/bin/bash", "-o", "pipefail", "-c"] | ||
|
||
RUN apt-get update && \ | ||
apt-get upgrade -yq && \ | ||
set -e && \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
name: hadolint | ||
|
||
on: [push, pull_request] | ||
on: | ||
push: | ||
paths: | ||
- .dockerfile* | ||
- .github/workflows/hadolint.yml | ||
pull_request: | ||
paths: | ||
- .dockerfile* | ||
- .github/workflows/hadolint.yml | ||
jobs: | ||
hadolint: | ||
runs-on: ubuntu-22.04 | ||
name: "Hadolint" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: jbergstroem/hadolint-gh-action@v1 | ||
with: | ||
error-level: 0 | ||
annotate: true | ||
output_format: tty | ||
dockerfile: ".dockerfile_base .dockerfile_dbg .dockerfile_dbge .dockerfile_kbuilder .dockerfile_rootfs" | ||
runs-on: ubuntu-22.04 | ||
name: "Hadolint" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: jbergstroem/hadolint-gh-action@v1 | ||
with: | ||
dockerfile: ".dockerfile*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,22 @@ | ||
name: shellcheck | ||
|
||
on: [push, pull_request] | ||
|
||
on: | ||
push: | ||
paths: | ||
- io/scipts/*.sh | ||
- ctf/misc/*.sh | ||
- .github/workflows/shellcheck.yml | ||
pull_request: | ||
paths: | ||
- io/scipts/*.sh | ||
- ctf/misc/*.sh | ||
- .github/workflows/shellcheck.yml | ||
jobs: | ||
shellcheck: | ||
name: Shellcheck | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run ShellCheck | ||
uses: ludeeus/action-shellcheck@master | ||
env: | ||
SHELLCHECK_OPTS: -e SC2002,SC2016,SC1009,SC1073,SC1072 | ||
- uses: actions/checkout@v2 | ||
- name: Run ShellCheck | ||
uses: ludeeus/action-shellcheck@master | ||
env: | ||
SHELLCHECK_OPTS: -e SC2002,SC2016,SC1009,SC1073,SC1072 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# README | ||
|
||
This directory houses example use cases and demo configutations for LIKE-DBG. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.