fix: set apt to be noninteractive

!1
This commit is contained in:
2023-05-13 15:12:14 +09:30
parent 8af1cee946
commit b242911657

View File

@ -1,7 +1,7 @@
FROM debian
# Install Docker and qemu
# TODO Use docker stable once it properly supports buildx
RUN apt-get update && apt-get install -y \
RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get update && apt-get install -y \
apt-transport-https \
ca-certificates \
curl \