mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
13 lines
204 B
Bash
Executable file
13 lines
204 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
apk add --no-cache gcompat
|
|
|
|
# Install zlib
|
|
apk add --no-cache --virtual .glibc-build-deps \
|
|
tar \
|
|
zlib \
|
|
zstd
|
|
|
|
apk del --no-network --purge .glibc-build-deps
|