We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cefafd4 commit 50345c5Copy full SHA for 50345c5
Dockerfile
@@ -12,6 +12,11 @@ ENV DEBIAN_FRONTEND=noninteractive
12
RUN apt-get update \
13
&& apt-get -y install --no-install-recommends apt-utils dialog 2>&1 \
14
#
15
+ # Install tzdata and configure timezone (fix for tests which try to read from "/etc/localtime")
16
+ && apt-get -y install tzdata \
17
+ && ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime \
18
+ && dpkg-reconfigure -f noninteractive tzdata \
19
+ #
20
# Verify git, process tools, lsb-release (common in install instructions for CLIs) installed
21
&& apt-get -y install git iproute2 procps iproute2 lsb-release \
22
0 commit comments