fix(docker): run apt as non-interactive

Signed-off-by: Sebastian Yaghoubi <sebastianyaghoubi@gmail.com>
This commit is contained in:
Sebastian Yaghoubi 2024-12-26 14:10:31 -08:00
parent a02212dc66
commit 310ba02dcb
No known key found for this signature in database
GPG key ID: 563B612A0D06FC4F

View file

@ -1,5 +1,7 @@
FROM python:3.13-slim-bullseye
ENV DEBIAN_FRONTEND=noninteractive
ARG INSTALL_GIT=false
RUN if [ "$INSTALL_GIT" = "true" ]; then \
apt-get update && apt-get install -y --no-install-recommends \