fix: add -y flag to install

This commit is contained in:
2023-07-17 00:28:50 +02:00
parent eba319af5e
commit 5619fd7a36

View File

@@ -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