From 16ad81a9c6eb31efc4b3192b303bbf97e84a5f42 Mon Sep 17 00:00:00 2001 From: Lucas Felix de Sousa Date: Sat, 25 Apr 2020 09:40:53 +0200 Subject: [PATCH] set Dockerfile ENV DEBIAN_FRONTEND=noninteractive This is needed for Ubuntu image to avoid asking to configure tzdata. More info: https://askubuntu.com/questions/909277/avoiding-user-interaction-with-tzdata-when-installing-certbot-in-a-docker-contai --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index b09c9bb..542facd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,8 @@ LABEL repository="https://github.com/mgenteluci/cloudformation-deploy-action" LABEL homepage="https://github.com/mgenteluci/cloudformation-deploy-action" LABEL maintainer="Matheus Genteluci " +ENV DEBIAN_FRONTEND=noninteractive + RUN apt-get update && apt-get install -y awscli ADD entrypoint.sh /entrypoint.sh