From c76d4dd11baa073ce50df571e066a08ebc1e662c Mon Sep 17 00:00:00 2001 From: Roger Sikorski Date: Sun, 12 Nov 2023 17:20:50 +0100 Subject: [PATCH] using apt-get instead apt like hadolint recommend it --- dockerfile/ubuntu/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfile/ubuntu/Dockerfile b/dockerfile/ubuntu/Dockerfile index c71fed1..3f8ae55 100644 --- a/dockerfile/ubuntu/Dockerfile +++ b/dockerfile/ubuntu/Dockerfile @@ -2,8 +2,8 @@ FROM ubuntu:22.04 -RUN apt update && \ - apt install -y nano mc micro rsync ncdu git curl +RUN apt-get update && \ + apt-get install -y nano mc micro rsync ncdu git curl COPY ./bin/ /usr/local/bin ENTRYPOINT ["sleep", "infinity"]