I'm trying to build a docker image from the following dockerfile:
FROM ubuntu:18.04
# Install Python
RUN apt-get update && apt-get install -y python3.10 python3-pip
# Install Java
RUN apt-get update && apt-get install -y openjdk-8-jdk
# Install Bowtie2
RUN apt-get update && apt-get install -y bowtie2
RUN apt-get update && \
apt-get install --yes --no-install-recommends \
zlib1g-dev \
libbz2-dev \
liblzma-dev \
&& rm -rf /var/lib/apt/lists/*
# Install RSeQC
RUN apt-get update && apt-get install -y python-pip
RUN pip install RSeQC
# Install biopython=1.80
RUN pip install biopython
# Install Atria
RUN apt-get update && apt-get install -y wget
RUN wget https://github.com/cihga39871/Atria/releases/download/v3.1.2/atria-3.1.2-linux.tar.gz
RUN tar -zxf atria-3.1.2-linux.tar.gz
RUN mv atria-3.1.2/bin/atria /usr/local/bin/atria
RUN chmod +x /usr/local/bin/atria
##Atria dependencies
RUN apt-get update && apt-get install pigz pbzip2
# Install findtail
RUN apt-get update && apt-get install -y wget
RUN wget https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/findtail/findtail_v1.01
RUN mv findtail_v1.01 /usr/local/bin/findtail_v1.01
RUN chmod +x /usr/local/bin/findtail_v1.01
When I try to build the image, it gets stuck at:
Configuring tzdata
------------------
Please select the geographic area in which you live. Subsequent configuration
questions will narrow this down by presenting a list of cities, representing
the time zones in which they are located.
1. Africa 4. Australia 7. Atlantic 10. Pacific 13. Etc
2. America 5. Arctic 8. Europe 11. SystemV
3. Antarctica 6. Asia 9. Indian 12. US
Geographic area: 6
It remains stuck there forever until I ctrl+c. Any idea why this is happening?