From a89190c48c0aac7e501219f2d598e36de8c3790e Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Sun, 5 Dec 2021 17:58:29 +0100 Subject: [PATCH] Update Dockerfile --- webtop/Dockerfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/webtop/Dockerfile b/webtop/Dockerfile index 581aad52d..ea48ea3d7 100644 --- a/webtop/Dockerfile +++ b/webtop/Dockerfile @@ -3,16 +3,18 @@ ARG BUILD_VERSION FROM ${BUILD_FROM} ARG BASHIO_VERSION=0.14.3 +ENV PACKAGES="curl \ + jq \ + cifs-utils \ + keyutils \ + samba" + RUN \ ################ # Install apps # ################ - apk add --no-cache \ - curl \ - jq \ - cifs-utils \ - keyutils \ - samba \ + apk add --no-cache $PACKAGES \ + \ ################### # Install bashio # ##################