mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* Remove docs logic on Ubuntu * Cleanup templates * Fix oras-cli.sh * Remove announcements.md
14 lines
399 B
Bash
14 lines
399 B
Bash
#!/bin/bash
|
|
################################################################################
|
|
## File: image-magick.sh
|
|
## Desc: Installs ImageMagick
|
|
################################################################################
|
|
|
|
|
|
# Install ImageMagick
|
|
apt-get install -y --no-install-recommends --fix-missing \
|
|
imagemagick \
|
|
libmagickcore-dev \
|
|
libmagickwand-dev \
|
|
libmagic-dev
|