mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-05 05:04:46 +02:00
Dockerfile: fix warnings
* Define LANGUAGE to quiet perl warnings * Set DEBIAN_FRONTEND=noninteractive before apt call to quiet TERM/Dialog warnings Signed-off-by: Tim Orling <tim.orling@konsulko.com>
This commit is contained in:
parent
743c8f449d
commit
c99a1ed4e7
|
@ -4,6 +4,7 @@ FROM debian:buster
|
|||
LABEL maintainer="Michael Halstead <mhalstead@linuxfoundation.org>"
|
||||
|
||||
ENV PYTHONUNBUFFERED=1 \
|
||||
LANGUAGE=en_US \
|
||||
LANG=en_US.UTF-8 \
|
||||
LC_ALL=en_US.UTF-8 \
|
||||
LC_CTYPE=en_US.UTF-8
|
||||
|
@ -15,7 +16,7 @@ ENV PYTHONUNBUFFERED=1 \
|
|||
# NOTE: we don't purge gcc below as we have some places in the OE metadata that look for it
|
||||
|
||||
COPY requirements.txt /
|
||||
RUN apt-get update \
|
||||
RUN DEBIAN_FRONTEND=noninteractive apt-get update \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
autoconf \
|
||||
g++ \
|
||||
|
|
Loading…
Reference in New Issue
Block a user