security_monkey icon indicating copy to clipboard operation
security_monkey copied to clipboard

Docker Hangs after selecting 'Geographic area'

Open srinathganesh opened this issue 5 years ago • 3 comments

Steps done:

  1. git clone
  2. changed to branch v1.1.0 (default was develop branch, which I didnt want)
  3. docker-compose build

No progress after entering value. Same issue in both local machines and on cloud EC2 VM image

srinathganesh avatar Apr 05 '19 04:04 srinathganesh

Hmm. I have never seen this before and don't know how to replicate. Can you outline the exact steps you took to reproduce the error?

mikegrima avatar Jun 13 '19 19:06 mikegrima

Solution:https://techoverflow.net/2019/05/18/how-to-fix-configuring-tzdata-interactive-input-when-building-docker-images/

jiangjiane avatar Sep 11 '19 03:09 jiangjiane

Choosing the noninteractive mode worked for me by avoiding all the input during docker image build.

FROM ubuntu
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -y
RUN pip3 install -r requirements.txt

vermavinay982 avatar Oct 10 '20 20:10 vermavinay982