We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba9f219 commit bd40615Copy full SHA for bd40615
2 files changed
Dockerfile
@@ -3,7 +3,7 @@ FROM linuxserver/baseimage.apache
3
MAINTAINER Mark Burford <[email protected]>
4
5
# set install packages as variable
6
-ENV install_packages="curl \
+ENV APTLIST="curl \
7
lynx-cur \
8
php5-cgi \
9
php5-gd \
@@ -23,8 +23,7 @@ wget"
23
24
# install packages
25
RUN apt-get update && \
26
-apt-get install \
27
-$install_packages -qy && \
+apt-get install $APTLIST -qy && \
28
29
# cleanup
30
apt-get clean -y && \
init/50_update_apps.sh
@@ -1,5 +1,4 @@
1
#!/bin/bash
2
apt-get update -qq
-apt-get --only-upgrade install \
-$install_packages -qqy
+apt-get --only-upgrade install $APTLIST -qqy
0 commit comments