diff --git a/.dockerignore b/.dockerignore index 258778b..154d44a 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,5 @@ .dockerignore +.devcontainer .git .github .gitignore diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index a5c9da0..53c5c25 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -18,3 +18,8 @@ jobs: dockerfile: Dockerfile ignore: DL3008,DL3018,DL3020,DL3029,DL3059 failure-threshold: warning + - + name: Validate JSON and YML files + uses: GrantBirki/json-yaml-validate@v4 + with: + yaml_exclude_regex: ".*\\kubernetes\\.yml$" diff --git a/Dockerfile b/Dockerfile index f3ce945..ae36a24 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apk --update --no-cache add unzip && \ rm -rf /tmp/* /var/tmp/* /var/cache/apk/* FROM scratch AS runner -COPY --from=qemux/qemu:7.24 / / +COPY --from=qemux/qemu:7.25 / / ARG VERSION_ARG="0.0" ARG VERSION_KVM_OPENCORE="v21" diff --git a/src/entry.sh b/src/entry.sh index 933be8b..bef9e8c 100644 --- a/src/entry.sh +++ b/src/entry.sh @@ -19,7 +19,9 @@ cd /run . network.sh # Initialize network . boot.sh # Configure boot . proc.sh # Initialize processor +. memory.sh # Check available memory . config.sh # Configure arguments +. finish.sh # Finish initialization trap - ERR