From ba8ed9b13fa334975910cad81f8999a13b635e82 Mon Sep 17 00:00:00 2001 From: aptalca Date: Tue, 21 Sep 2021 13:46:59 -0400 Subject: [PATCH] standardize apt-get --- root/etc/cont-init.d/95-apt-get | 3 +++ root/etc/cont-init.d/98-ffmpeg | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 root/etc/cont-init.d/95-apt-get diff --git a/root/etc/cont-init.d/95-apt-get b/root/etc/cont-init.d/95-apt-get new file mode 100644 index 0000000..5b1a21c --- /dev/null +++ b/root/etc/cont-init.d/95-apt-get @@ -0,0 +1,3 @@ +#!/usr/bin/with-contenv bash + +apt-get update diff --git a/root/etc/cont-init.d/98-ffmpeg b/root/etc/cont-init.d/98-ffmpeg index 6321ce5..62d0fbd 100644 --- a/root/etc/cont-init.d/98-ffmpeg +++ b/root/etc/cont-init.d/98-ffmpeg @@ -1,4 +1,4 @@ #!/usr/bin/with-contenv bash echo "**** installing ffmpeg ****" -apt-get update && apt-get install -y ffmpeg \ No newline at end of file +apt-get install -y ffmpeg \ No newline at end of file