From 7b603ffa4880e8d3471e478749d118ae3d6cdd4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franc=CC=A7ois=20Bonelle?= Date: Sat, 18 Jun 2022 20:15:18 +0200 Subject: [PATCH] Fix --- telegraf/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/telegraf/Dockerfile b/telegraf/Dockerfile index 4aafafc..bb552a8 100755 --- a/telegraf/Dockerfile +++ b/telegraf/Dockerfile @@ -13,6 +13,16 @@ ARG TELEGRAF_VERSION ARG BASHIO_VERSION ARG TEMPIO_VERSION +# Environment variables +ENV \ + HOME="/root" \ + LANG="C.UTF-8" \ + PS1="$(whoami)@$(hostname):$(pwd)$ " \ + TERM="xterm-256color" + +# Copy root filesystem +COPY rootfs / + # Set shell SHELL ["/bin/bash", "-o", "pipefail", "-c"]