catthehacker / docker_images

Docker images
MIT License
212 stars 75 forks source link

feat: Add yq to act and custom #117

Closed Beanow closed 9 months ago

Beanow commented 10 months ago

Resolves #78

I gave this a simple test build locally (linux x86_64).

docker build -f linux/ubuntu/Dockerfile \
--build-arg FROM_IMAGE=buildpack-deps \
--build-arg FROM_TAG=22.04 \
--build-arg TYPE=act \
-t test-act \
.

#         🧨 Executing yq.sh 🧨
# + /imagegeneration/installers/yq.sh
# Downloading 'https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64' to '/tmp/yq'...
# Download completed
# Performing checksum verification
# Checksum verification passed

docker run --rm test-act yq --version
# yq (https://github.com/mikefarah/yq/) version v4.35.2
Beanow commented 10 months ago

11 minutes of pulling later... can confirm it's the same as:

docker run --rm catthehacker/ubuntu:full-latest yq --version
# yq (https://github.com/mikefarah/yq/) version v4.35.2