Add missing wget dependency
This commit is contained in:
parent
51d8102432
commit
ef06bd9923
1 changed files with 6 additions and 0 deletions
|
@ -9,6 +9,12 @@ ENV WEEWX_WDC_VERSION="v1.3.1"
|
|||
RUN addgroup --system --gid ${WEEWX_UID} weewx \
|
||||
&& adduser --system --uid ${WEEWX_UID} --ingroup weewx weewx
|
||||
|
||||
# Install installation dependencies
|
||||
RUN apt-get update -qq -y &&\
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
||||
wget -qq -y --no-install-recommends &&\
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /tmp
|
||||
COPY requirements.txt ./
|
||||
|
||||
|
|
Reference in a new issue