In the other day , I tried to build a docker image using following Dockerfile.
But I was prevented from a cause I didn't know.
FROM ubuntu:latest RUN apt-get update \ && apt-get install -y clang clang-12 \ && apt-get install -y neovim git wget curl imagemagick wireshark tshark unzip gdb net-tools
I show a measure for it.
What I did
More precisely, I added the line startting from 'ENV' , installing tzdata before installing some package.
Modified Dockerfile
FROM ubuntu:latest ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install -y tzdata \ && apt-get install -y clang clang-12 \ && apt-get install -y neovim git wget curl imagemagick wireshark tshark unzip gdb net-tools
0 件のコメント:
コメントを投稿