Last active
May 5, 2020 20:50
-
-
Save jkutner/3114f8e84dcc8c54abacc9c62236d2ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
apt update | |
apt install imagemagick | |
cat << EOF > ${1}/privileged.toml | |
[[layers]] | |
paths = [ "/usr" ] | |
launch = true | |
build = true | |
cache = true | |
[[layers]] | |
paths = [ "/var" ] | |
launch = false | |
build = false | |
cache = true | |
EOF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
apt update | |
apt install imagemagick | |
cat << EOF > ${1}/usr.toml | |
paths = [ "/usr" ] | |
launch = true | |
build = true | |
cache = true | |
EOF | |
cat << EOF > ${1}/var.toml | |
paths = [ "/var" ] | |
launch = false | |
build = false | |
cache = true | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment