From 8967399fe30ff36d6ce9192770fc0ceb5803ee97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Wed, 18 May 2022 00:52:05 +0200 Subject: [PATCH] use apt-get --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a465752..a649d77 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ FROM ubuntu:20.04 -RUN apt update && \ - apt upgrade -y && \ - apt install -y wget && \ +RUN apt-get update && \ + apt-get upgrade -y && \ + apt-get install -y wget && \ wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb && \ dpkg -i packages-microsoft-prod.deb && \ echo 'tzdata tzdata/Areas select Europe' | debconf-set-selections && \ echo 'tzdata tzdata/Zones/Europe select Budapest' | debconf-set-selections && \ - DEBIAN_FRONTEND="noninteractive" apt install –no-install-recommends --yes azure-cli npm python3-dev python3-pip python3-venv && \ + DEBIAN_FRONTEND="noninteractive" apt-get install –no-install-recommends --yes azure-cli npm python3-dev python3-pip python3-venv && \ npm i -g azure-functions-core-tools@4 --unsafe-perm true && \ apt autoclean