Skip to content

chore(deps): update alpine docker tag - autoclosed #97

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Earthfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@


alpine-base:
FROM alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
# renovate: datasource=repology depName=alpine_3_21/bash versioning=loose
FROM alpine:3.22.0@sha256:8a1f59ffb675680d47db6337b49d22281a139e9d709335b492be023728e11715
# renovate: datasource=repology depName=alpine_3_22/bash versioning=loose
ENV BASH_VERSION="5.2.37-r0"
RUN apk add --no-cache bash=$BASH_VERSION
WORKDIR "/nasm-x86-shellcode-generator"
Expand Down Expand Up @@ -82,10 +82,10 @@

compile:
FROM +alpine-base
# renovate: datasource=repology depName=alpine_3_21/gcc versioning=loose
# renovate: datasource=repology depName=alpine_3_22/gcc versioning=loose
ENV GCC_VERSION="14.2.0-r4"
# renovate: datasource=repology depName=alpine_3_21/musl-dev versioning=loose
# renovate: datasource=repology depName=alpine_3_22/musl-dev versioning=loose
ENV MUSL_VERSION="1.2.5-r9"
RUN apk add --no-cache gcc=$GCC_VERSION musl-dev=$MUSL_VERSION

Check failure on line 89 in Earthfile

View workflow job for this annotation

GitHub Actions / Compile

Error

The command RUN apk add --no-cache gcc=$GCC_VERSION musl-dev=$MUSL_VERSION did not complete successfully. Exit code 2
DO +COPY_SOURCECODE
RUN ./ci/compile.sh
Loading