File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11FROM debian:10
2-
32SHELL ["/bin/bash" , "-c" ]
4- RUN apt-get update -y && apt-get install -y git sudo
3+ # # Necessary to avoid interactive responses in installations
4+ ENV DEBIAN_FRONTEND=noninteractive
5+ RUN apt-get update -y && apt-get install -y git
56
67# # Install pyenv to install python3.8
78RUN apt install -y make build-essential libssl-dev zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev wget curl llvm libncurses5-dev libncursesw5-dev xz-utils tk-dev libffi-dev liblzma-dev python-openssl
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM fedora:35
22RUN dnf install git -y
33ENV PASH_TOP=/opt/pash
44# download PaSh
5- RUN git clone --depth 1 https://github.com/binpash/pash.git /opt/pash
5+ RUN git clone https://github.com/binpash/pash.git /opt/pash
66RUN bash /opt/pash/scripts/distro-deps.sh -o
77RUN yes | bash /opt/pash/scripts/setup-pash.sh -o
88ENV LANG en_US.UTF-8
Original file line number Diff line number Diff line change 1- FROM ubuntu:18.04
1+ FROM ubuntu:20.04
2+ # # Necessary to avoid interactive responses in installations
3+ ENV DEBIAN_FRONTEND=noninteractive
24RUN apt-get update -y && apt-get install -y git
35ENV PASH_TOP=/opt/pash
46# download PaSh
5- RUN git clone --depth 1 https://github.com/binpash/pash.git /opt/pash
7+ RUN git clone https://github.com/binpash/pash.git /opt/pash
68RUN bash /opt/pash/scripts/distro-deps.sh -o
79RUN yes | bash /opt/pash/scripts/setup-pash.sh -o
810ENV LANG en_US.UTF-8
You can’t perform that action at this time.
0 commit comments