From 5619fd7a366d6b595cd6bd244396233879a07634 Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Mon, 17 Jul 2023 00:28:50 +0200 Subject: [PATCH] fix: add -y flag to install --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 549451a..390224a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.9-slim-buster RUN apt update RUN apt install python3-pip -y -RUN apt install libsasl2-dev python-dev libldap2-dev libssl-dev +RUN apt install libsasl2-dev python-dev libldap2-dev libssl-dev -y RUN python3 -m pip install --upgrade pip RUN apt install curl -y RUN apt autoremove -y