From 9a67103da1bf237ab32733006dad2df8eba3e510 Mon Sep 17 00:00:00 2001 From: fithwum Date: Sun, 6 Jul 2025 08:23:06 -0700 Subject: [PATCH] fix attempt --- .gitea/workflows/base-build.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/base-build.yml b/.gitea/workflows/base-build.yml index 2c9c38b..a4561ca 100644 --- a/.gitea/workflows/base-build.yml +++ b/.gitea/workflows/base-build.yml @@ -33,7 +33,7 @@ jobs: alpine:latest \ sh -c " apk add --no-cache bash curl wget sudo git jq && \ - chmod +x alpine-base/*.sh && \ + chmod +x base-image-script/*.sh && \ bash base-image-script/alpine-base_pt1.sh " diff --git a/Dockerfile b/Dockerfile index 84531e6..8bd62c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ RUN apk update && apk add --no-cache \ && update-ca-certificates COPY base-image-script/ base-image-script/ -RUN chmod +x alpine-base/*.sh +RUN chmod +x base-image-script/*.sh # Default command (overridden by CI) CMD ["bash"]