diff options
author | Lauri Ojansivu <x@xet7.org> | 2018-01-22 17:17:28 +0200 |
---|---|---|
committer | Lauri Ojansivu <x@xet7.org> | 2018-01-22 17:17:28 +0200 |
commit | d2ce41694fcea2358ab0e7d42039fb3c7c7bdb4a (patch) | |
tree | bfc35b3c5a31fd0657970345e000bb62ce5b41d7 /Dockerfile | |
parent | b2c9d47b0f7b6ab96857659a9f038e66dfdee9fc (diff) | |
download | wekan-d2ce41694fcea2358ab0e7d42039fb3c7c7bdb4a.tar.gz wekan-d2ce41694fcea2358ab0e7d42039fb3c7c7bdb4a.tar.bz2 wekan-d2ce41694fcea2358ab0e7d42039fb3c7c7bdb4a.zip |
Dockerfile apt => apt-get
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ RUN \ useradd --user-group --system --home-dir /home/wekan wekan && \ \ # OS dependencies - apt update -y && apt install -y --no-install-recommends ${BUILD_DEPS} && \ + apt-get update -y && apt-get install -y --no-install-recommends ${BUILD_DEPS} && \ \ # Gosu installation GOSU_ARCHITECTURE="$(dpkg --print-architecture | awk -F- '{ print $NF }')" && \ |