From 2f7bd3f71f24dd3b6ecc56f3a4c27bbc2d140eca Mon Sep 17 00:00:00 2001 From: TimPietrusky Date: Wed, 11 Oct 2023 12:24:34 +0200 Subject: [PATCH] fix: don't run ntpdate as this is not working in GitHub Actions --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a97346b..124cb37 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,10 +14,10 @@ RUN apt-get update && apt-get install -y \ python3-pip \ git \ wget \ - ntpdate + # ntpdate -# Update the system time -RUN ntpdate time.aws.com +# # Update the system time +# RUN ntpdate time.aws.com # Clean up to reduce image size RUN apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*