Skip to content

Commit

Permalink
Fix docker build failure for redhat due to user-input timeout and Fix…
Browse files Browse the repository at this point in the history
… similar potential problems for other linux
  • Loading branch information
vjaganat90 committed Jan 30, 2024
1 parent ddfd003 commit e7c08a7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile_amazon
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM amazonlinux

# Install conda / mamba
RUN yum update && yum install -y wget
RUN yum update -y && yum install -y wget

RUN CONDA="Mambaforge-Linux-x86_64.sh" && \
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_amazon_pypy
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM amazonlinux

# Install conda / mamba
RUN yum update && yum install -y wget
RUN yum update -y && yum install -y wget

RUN CONDA="Mambaforge-pypy3-Linux-x86_64.sh" && \
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_debian
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM debian:stable-slim

# Install conda / mamba
RUN apt-get update && apt-get install -y wget
RUN apt-get update -y && apt-get install -y wget

RUN CONDA="Mambaforge-Linux-x86_64.sh" && \
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_debian_pypy
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM debian:stable-slim

# Install conda / mamba
RUN apt-get update && apt-get install -y wget
RUN apt-get update -y && apt-get install -y wget

RUN CONDA="Mambaforge-pypy3-Linux-x86_64.sh" && \
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_redhat
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM redhat/ubi9-minimal
# NOTE: the package manager is microdnf, not dnf

# Install conda / mamba
RUN microdnf update && microdnf install -y wget
RUN microdnf update -y && microdnf install -y wget

RUN CONDA="Mambaforge-Linux-x86_64.sh" && \
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_redhat_pypy
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM redhat/ubi9-minimal
# NOTE: the package manager is microdnf, not dnf

# Install conda / mamba
RUN microdnf update && microdnf install -y wget
RUN microdnf update -y && microdnf install -y wget

RUN CONDA="Mambaforge-pypy3-Linux-x86_64.sh" && \
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM ubuntu

# Install conda / mamba
RUN apt-get update && apt-get install -y wget
RUN apt-get update -y && apt-get install -y wget

RUN CONDA="Mambaforge-Linux-x86_64.sh" && \
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile_ubuntu_pypy
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
FROM ubuntu

# Install conda / mamba
RUN apt-get update && apt-get install -y wget
RUN apt-get update -y && apt-get install -y wget

RUN CONDA="Mambaforge-pypy3-Linux-x86_64.sh" && \
wget --quiet https://github.com/conda-forge/miniforge/releases/latest/download/$CONDA && \
Expand Down

0 comments on commit e7c08a7

Please sign in to comment.