Archived
1
0
Fork 0

Add missing wget dependency

This commit is contained in:
Daniel Kempkens 2022-07-15 20:33:08 +02:00
parent 51d8102432
commit ef06bd9923

View file

@ -9,6 +9,12 @@ ENV WEEWX_WDC_VERSION="v1.3.1"
RUN addgroup --system --gid ${WEEWX_UID} weewx \ RUN addgroup --system --gid ${WEEWX_UID} weewx \
&& adduser --system --uid ${WEEWX_UID} --ingroup weewx 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 WORKDIR /tmp
COPY requirements.txt ./ COPY requirements.txt ./