chore(deps): update alpine docker tag to v3.22
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
3c96eae178
commit
a0d91f19e9
2 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
|||
FROM alpine:3.21
|
||||
FROM alpine:3.22
|
||||
COPY . .
|
||||
RUN apk add --no-cache gcc musl-dev && \
|
||||
gcc -shared -fPIC -Wall -Wextra -Werror numcpu_override.c -o numcpu_override.so -ldl
|
||||
|
||||
FROM alpine:3.21
|
||||
FROM alpine:3.22
|
||||
COPY /copy.sh /
|
||||
COPY --from=0 numcpu_override.so /
|
||||
ENTRYPOINT ["/copy.sh"]
|
||||
|
|
|
@ -3,7 +3,7 @@ COPY . .
|
|||
RUN apt update && apt install -y gcc && \
|
||||
gcc -shared -fPIC -Wall -Wextra -Werror numcpu_override.c -o numcpu_override.so -ldl
|
||||
|
||||
FROM alpine:3.21
|
||||
FROM alpine:3.22
|
||||
COPY /copy.sh /
|
||||
COPY --from=0 numcpu_override.so /
|
||||
ENTRYPOINT ["/copy.sh"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue