diff --git a/container-templates/docker-compose/.devcontainer/Dockerfile b/container-templates/docker-compose/.devcontainer/Dockerfile index 77cbd1b42d..7fbf50430d 100644 --- a/container-templates/docker-compose/.devcontainer/Dockerfile +++ b/container-templates/docker-compose/.devcontainer/Dockerfile @@ -13,8 +13,6 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/container-templates/dockerfile/.devcontainer/Dockerfile b/container-templates/dockerfile/.devcontainer/Dockerfile index 728831d04e..b225952f4c 100644 --- a/container-templates/dockerfile/.devcontainer/Dockerfile +++ b/container-templates/dockerfile/.devcontainer/Dockerfile @@ -8,8 +8,6 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/azure-ansible/.devcontainer/Dockerfile b/containers/azure-ansible/.devcontainer/Dockerfile index 2f048e18bc..fc0ed1becc 100644 --- a/containers/azure-ansible/.devcontainer/Dockerfile +++ b/containers/azure-ansible/.devcontainer/Dockerfile @@ -8,8 +8,6 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/azure-blockchain/.devcontainer/Dockerfile b/containers/azure-blockchain/.devcontainer/Dockerfile index 27ad2965bb..25491b8403 100644 --- a/containers/azure-blockchain/.devcontainer/Dockerfile +++ b/containers/azure-blockchain/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM python:2.7 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/azure-cli/.devcontainer/Dockerfile b/containers/azure-cli/.devcontainer/Dockerfile index 6cc160218e..1263fe3085 100644 --- a/containers/azure-cli/.devcontainer/Dockerfile +++ b/containers/azure-cli/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/azure-functions-dotnetcore-2.1/.devcontainer/Dockerfile b/containers/azure-functions-dotnetcore-2.1/.devcontainer/Dockerfile index beab7026b9..646167fa08 100644 --- a/containers/azure-functions-dotnetcore-2.1/.devcontainer/Dockerfile +++ b/containers/azure-functions-dotnetcore-2.1/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM mcr.microsoft.com/dotnet/core/sdk:2.1 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/azure-functions-dotnetcore-latest/.devcontainer/Dockerfile b/containers/azure-functions-dotnetcore-latest/.devcontainer/Dockerfile index fb248071ec..f1d190558c 100644 --- a/containers/azure-functions-dotnetcore-latest/.devcontainer/Dockerfile +++ b/containers/azure-functions-dotnetcore-latest/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM mcr.microsoft.com/dotnet/core/sdk:latest # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/azure-functions-java-8/.devcontainer/Dockerfile b/containers/azure-functions-java-8/.devcontainer/Dockerfile index 146edeb4c0..8b158e9b3d 100644 --- a/containers/azure-functions-java-8/.devcontainer/Dockerfile +++ b/containers/azure-functions-java-8/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM maven:3-jdk-8 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/azure-functions-node-8/.devcontainer/Dockerfile b/containers/azure-functions-node-8/.devcontainer/Dockerfile index 519864e01a..6bb0a035c2 100644 --- a/containers/azure-functions-node-8/.devcontainer/Dockerfile +++ b/containers/azure-functions-node-8/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM node:8 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/azure-functions-node-lts/.devcontainer/Dockerfile b/containers/azure-functions-node-lts/.devcontainer/Dockerfile index 018efa64ec..7720e18997 100644 --- a/containers/azure-functions-node-lts/.devcontainer/Dockerfile +++ b/containers/azure-functions-node-lts/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM node:lts # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/azure-machine-learning-python-3/.devcontainer/Dockerfile b/containers/azure-machine-learning-python-3/.devcontainer/Dockerfile index cd38c27b60..0ad8b279b0 100644 --- a/containers/azure-machine-learning-python-3/.devcontainer/Dockerfile +++ b/containers/azure-machine-learning-python-3/.devcontainer/Dockerfile @@ -9,8 +9,6 @@ FROM continuumio/anaconda3 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/azure-terraform/.devcontainer/Dockerfile b/containers/azure-terraform/.devcontainer/Dockerfile index 326a89041f..964e86a1a5 100644 --- a/containers/azure-terraform/.devcontainer/Dockerfile +++ b/containers/azure-terraform/.devcontainer/Dockerfile @@ -8,8 +8,7 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash + # Terraform and tflint versions ARG TERRAFORM_VERSION=0.11.13 ARG TFLINT_VERSION=0.7.5 diff --git a/containers/bazel/.devcontainer/Dockerfile b/containers/bazel/.devcontainer/Dockerfile index c779eef80a..41b163f1eb 100644 --- a/containers/bazel/.devcontainer/Dockerfile +++ b/containers/bazel/.devcontainer/Dockerfile @@ -6,8 +6,7 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash + # Bazel version and hash ENV BAZEL_VERSION=0.25.2 ENV BAZEL_SHA256=5b9ab8a68c53421256909f79c47bde76a051910217531cbf35ee995448254fa7 diff --git a/containers/cpp/.devcontainer/Dockerfile b/containers/cpp/.devcontainer/Dockerfile index c4bccd4941..a1808a983f 100644 --- a/containers/cpp/.devcontainer/Dockerfile +++ b/containers/cpp/.devcontainer/Dockerfile @@ -7,16 +7,13 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash +# Configure apt and install packages RUN apt-get update \ - # - # Configure apt && apt-get -y install --no-install-recommends apt-utils 2>&1 \ # # Verify git, process tools, lsb-release (useful for CLI installs) installed - && apt-get update && apt-get -y install git procps lsb-release \ + && apt-get -y install git procps lsb-release \ # # Install C++ tools && apt-get -y install build-essential cmake cppcheck valgrind \ diff --git a/containers/dart/.devcontainer/Dockerfile b/containers/dart/.devcontainer/Dockerfile index eddeb62550..8d127f7c60 100644 --- a/containers/dart/.devcontainer/Dockerfile +++ b/containers/dart/.devcontainer/Dockerfile @@ -7,8 +7,7 @@ FROM google/dart:2 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash + # Add bin location to path ENV PATH="$PATH":"/root/.pub-cache/bin" diff --git a/containers/debian-9-git/.devcontainer/Dockerfile b/containers/debian-9-git/.devcontainer/Dockerfile index 77dbb29494..4fbf9d312c 100644 --- a/containers/debian-9-git/.devcontainer/Dockerfile +++ b/containers/debian-9-git/.devcontainer/Dockerfile @@ -6,8 +6,6 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/docker-in-docker-compose/.devcontainer/Dockerfile b/containers/docker-in-docker-compose/.devcontainer/Dockerfile index 30c2c4e23a..db7cb563d4 100644 --- a/containers/docker-in-docker-compose/.devcontainer/Dockerfile +++ b/containers/docker-in-docker-compose/.devcontainer/Dockerfile @@ -8,8 +8,7 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash + # Docker Compose version ARG COMPOSE_VERSION=1.24.0 diff --git a/containers/docker-in-docker/.devcontainer/Dockerfile b/containers/docker-in-docker/.devcontainer/Dockerfile index 920f5a0697..4dcd2fb3bc 100644 --- a/containers/docker-in-docker/.devcontainer/Dockerfile +++ b/containers/docker-in-docker/.devcontainer/Dockerfile @@ -9,8 +9,7 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash + # Docker Compose version ARG COMPOSE_VERSION=1.24.0 diff --git a/containers/dotnetcore-2.1-fsharp/.devcontainer/Dockerfile b/containers/dotnetcore-2.1-fsharp/.devcontainer/Dockerfile index 77651150c8..2ed9eec12f 100644 --- a/containers/dotnetcore-2.1-fsharp/.devcontainer/Dockerfile +++ b/containers/dotnetcore-2.1-fsharp/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM mcr.microsoft.com/dotnet/core/sdk:2.1 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/dotnetcore-2.1/.devcontainer/Dockerfile b/containers/dotnetcore-2.1/.devcontainer/Dockerfile index 9c6e21efc6..c90dc4d8f7 100644 --- a/containers/dotnetcore-2.1/.devcontainer/Dockerfile +++ b/containers/dotnetcore-2.1/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM mcr.microsoft.com/dotnet/core/sdk:2.1 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/dotnetcore-latest-fsharp/.devcontainer/Dockerfile b/containers/dotnetcore-latest-fsharp/.devcontainer/Dockerfile index 1403b586f2..1884ae6294 100644 --- a/containers/dotnetcore-latest-fsharp/.devcontainer/Dockerfile +++ b/containers/dotnetcore-latest-fsharp/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM mcr.microsoft.com/dotnet/core/sdk:latest # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/dotnetcore-latest/.devcontainer/Dockerfile b/containers/dotnetcore-latest/.devcontainer/Dockerfile index c0754850b1..5ea7285681 100644 --- a/containers/dotnetcore-latest/.devcontainer/Dockerfile +++ b/containers/dotnetcore-latest/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM mcr.microsoft.com/dotnet/core/sdk:latest # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/go/.devcontainer/Dockerfile b/containers/go/.devcontainer/Dockerfile index adbef3db6c..89b75bd356 100644 --- a/containers/go/.devcontainer/Dockerfile +++ b/containers/go/.devcontainer/Dockerfile @@ -5,6 +5,9 @@ FROM golang:1 +# Avoid warnings by switching to noninteractive +ENV DEBIAN_FRONTEND=noninteractive + # Configure apt and install packages RUN apt-get update \ && apt-get -y install --no-install-recommends apt-utils 2>&1 \ diff --git a/containers/java-11/.devcontainer/Dockerfile b/containers/java-11/.devcontainer/Dockerfile index 00047679c0..f90d578f59 100644 --- a/containers/java-11/.devcontainer/Dockerfile +++ b/containers/java-11/.devcontainer/Dockerfile @@ -47,6 +47,3 @@ ENV DEBIAN_FRONTEND=dialog # Allow for a consistant java home location for settings - image is changing over time RUN if [ ! -d "/docker-java-home" ]; then ln -s "${JAVA_HOME}" /docker-java-home; fi - -# Set the default shell to bash instead of sh -ENV SHELL /bin/bash \ No newline at end of file diff --git a/containers/java-12/.devcontainer/Dockerfile b/containers/java-12/.devcontainer/Dockerfile index a60c146f2c..d5c3b4b253 100644 --- a/containers/java-12/.devcontainer/Dockerfile +++ b/containers/java-12/.devcontainer/Dockerfile @@ -39,6 +39,3 @@ RUN yum clean all # Allow for a consistent java home location for settings - image is changing over time RUN if [ ! -d "/docker-java-home" ]; then ln -s "${JAVA_HOME}" /docker-java-home; fi - -# Set the default shell to bash instead of sh -ENV SHELL /bin/bash \ No newline at end of file diff --git a/containers/java-8-tomcat-8.5/.devcontainer/Dockerfile b/containers/java-8-tomcat-8.5/.devcontainer/Dockerfile index 3978c01a99..2b48d78f02 100644 --- a/containers/java-8-tomcat-8.5/.devcontainer/Dockerfile +++ b/containers/java-8-tomcat-8.5/.devcontainer/Dockerfile @@ -39,7 +39,4 @@ RUN apt-get autoremove -y \ ENV DEBIAN_FRONTEND=dialog # Allow for a consistant java home location for settings - image is changing over time -RUN if [ ! -d "/docker-java-home" ]; then ln -s "${JAVA_HOME}" /docker-java-home; fi - -# Set the default shell to bash instead of sh -ENV SHELL /bin/bash \ No newline at end of file +RUN if [ ! -d "/docker-java-home" ]; then ln -s "${JAVA_HOME}" /docker-java-home; fi \ No newline at end of file diff --git a/containers/java-8/.devcontainer/Dockerfile b/containers/java-8/.devcontainer/Dockerfile index e339852c6b..b5e082ef8d 100644 --- a/containers/java-8/.devcontainer/Dockerfile +++ b/containers/java-8/.devcontainer/Dockerfile @@ -47,6 +47,3 @@ ENV DEBIAN_FRONTEND=dialog # Allow for a consistant java home location for settings - image is changing over time RUN if [ ! -d "/docker-java-home" ]; then ln -s "${JAVA_HOME}" /docker-java-home; fi - -# Set the default shell to bash instead of sh -ENV SHELL /bin/bash \ No newline at end of file diff --git a/containers/javascript-node-8/.devcontainer/Dockerfile b/containers/javascript-node-8/.devcontainer/Dockerfile index 6249ed179f..879f5511a5 100644 --- a/containers/javascript-node-8/.devcontainer/Dockerfile +++ b/containers/javascript-node-8/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM node:8 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash instead of sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/javascript-node-lts-mongo/.devcontainer/Dockerfile b/containers/javascript-node-lts-mongo/.devcontainer/Dockerfile index 3507829be2..fd1edbd56e 100644 --- a/containers/javascript-node-lts-mongo/.devcontainer/Dockerfile +++ b/containers/javascript-node-lts-mongo/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM node:lts # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash instead of sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/javascript-node-lts/.devcontainer/Dockerfile b/containers/javascript-node-lts/.devcontainer/Dockerfile index 3507829be2..fd1edbd56e 100644 --- a/containers/javascript-node-lts/.devcontainer/Dockerfile +++ b/containers/javascript-node-lts/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM node:lts # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash instead of sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/kubernetes-helm/.devcontainer/Dockerfile b/containers/kubernetes-helm/.devcontainer/Dockerfile index 1698b20c42..7be9d39fcb 100644 --- a/containers/kubernetes-helm/.devcontainer/Dockerfile +++ b/containers/kubernetes-helm/.devcontainer/Dockerfile @@ -8,8 +8,6 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/markdown/.devcontainer/Dockerfile b/containers/markdown/.devcontainer/Dockerfile index 9f862a8599..5af0383e6f 100644 --- a/containers/markdown/.devcontainer/Dockerfile +++ b/containers/markdown/.devcontainer/Dockerfile @@ -7,9 +7,6 @@ FROM debian:9 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash - # Configure apt and install packages RUN apt-get update \ diff --git a/containers/perl/.devcontainer/Dockerfile b/containers/perl/.devcontainer/Dockerfile index b30e7192e9..7094e466ae 100644 --- a/containers/perl/.devcontainer/Dockerfile +++ b/containers/perl/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM perl:5 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/php-7/.devcontainer/Dockerfile b/containers/php-7/.devcontainer/Dockerfile index b5505a3e35..bafa6c3214 100644 --- a/containers/php-7/.devcontainer/Dockerfile +++ b/containers/php-7/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM php:7-cli # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/plantuml/.devcontainer/Dockerfile b/containers/plantuml/.devcontainer/Dockerfile index ba52230a78..9163a4b5e3 100644 --- a/containers/plantuml/.devcontainer/Dockerfile +++ b/containers/plantuml/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM openjdk:8 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/powershell/.devcontainer/Dockerfile b/containers/powershell/.devcontainer/Dockerfile index 2739faefba..b8a2ead631 100644 --- a/containers/powershell/.devcontainer/Dockerfile +++ b/containers/powershell/.devcontainer/Dockerfile @@ -11,6 +11,3 @@ RUN apt-get update && apt-get -y install git procps \ && apt-get autoremove -y \ && apt-get clean -y \ && rm -rf /var/lib/apt/lists/* - -# Set the default shell to bash instead of sh -ENV SHELL /bin/bash \ No newline at end of file diff --git a/containers/python-2/.devcontainer/Dockerfile b/containers/python-2/.devcontainer/Dockerfile index d456d6a7f5..5d1196922f 100644 --- a/containers/python-2/.devcontainer/Dockerfile +++ b/containers/python-2/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM python:2 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Copy requirements.txt (if found) to a temp locaition so we can install it. Also # copy "noop.txt" so the COPY instruction does not fail if no requirements.txt exists. diff --git a/containers/python-3-anaconda/.devcontainer/Dockerfile b/containers/python-3-anaconda/.devcontainer/Dockerfile index c1434edc00..8154932088 100644 --- a/containers/python-3-anaconda/.devcontainer/Dockerfile +++ b/containers/python-3-anaconda/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM continuumio/anaconda3 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Copy environment.yml (if found) to a temp locaition so we update the environment. Also # copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists. diff --git a/containers/python-3-miniconda/.devcontainer/Dockerfile b/containers/python-3-miniconda/.devcontainer/Dockerfile index f063010d59..856514e7d2 100644 --- a/containers/python-3-miniconda/.devcontainer/Dockerfile +++ b/containers/python-3-miniconda/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM continuumio/miniconda3 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Copy environment.yml (if found) to a temp locaition so we update the environment. Also # copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists. diff --git a/containers/python-3-postgres/.devcontainer/Dockerfile b/containers/python-3-postgres/.devcontainer/Dockerfile index 3a71ce7117..6c9a4312d8 100644 --- a/containers/python-3-postgres/.devcontainer/Dockerfile +++ b/containers/python-3-postgres/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM python:3 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash ENV PYTHONUNBUFFERED 1 diff --git a/containers/python-3/.devcontainer/Dockerfile b/containers/python-3/.devcontainer/Dockerfile index 89fcabea2e..53fc1ac55e 100644 --- a/containers/python-3/.devcontainer/Dockerfile +++ b/containers/python-3/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM python:3 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Copy requirements.txt (if found) to a temp locaition so we can install it. Also # copy "noop.txt" so the COPY instruction does not fail if no requirements.txt exists. diff --git a/containers/r/.devcontainer/Dockerfile b/containers/r/.devcontainer/Dockerfile index f6ab2db70c..c9d4cad99b 100644 --- a/containers/r/.devcontainer/Dockerfile +++ b/containers/r/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM rocker/r-apt:bionic # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/ruby-2-rails-5/.devcontainer/Dockerfile b/containers/ruby-2-rails-5/.devcontainer/Dockerfile index a5bcdc3da4..58f4371346 100644 --- a/containers/ruby-2-rails-5/.devcontainer/Dockerfile +++ b/containers/ruby-2-rails-5/.devcontainer/Dockerfile @@ -2,8 +2,6 @@ FROM debian:latest # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/ruby-2-sinatra/.devcontainer/Dockerfile b/containers/ruby-2-sinatra/.devcontainer/Dockerfile index 0b7bff86af..31be9c7cc0 100644 --- a/containers/ruby-2-sinatra/.devcontainer/Dockerfile +++ b/containers/ruby-2-sinatra/.devcontainer/Dockerfile @@ -2,8 +2,6 @@ FROM debian:latest # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/ruby-2/.devcontainer/Dockerfile b/containers/ruby-2/.devcontainer/Dockerfile index d672e40757..633c2afd1c 100644 --- a/containers/ruby-2/.devcontainer/Dockerfile +++ b/containers/ruby-2/.devcontainer/Dockerfile @@ -7,14 +7,12 @@ FROM ruby:2 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ && apt-get -y install --no-install-recommends apt-utils 2>&1 \ # Verify git, process tools installed - && apt-get update && apt-get -y install git procps lsb-release \ + && apt-get -y install git procps lsb-release \ # # Install ruby-debug-ide and debase && gem install ruby-debug-ide \ diff --git a/containers/rust/.devcontainer/Dockerfile b/containers/rust/.devcontainer/Dockerfile index e0aa5e542e..6b4dbc8e5e 100644 --- a/containers/rust/.devcontainer/Dockerfile +++ b/containers/rust/.devcontainer/Dockerfile @@ -4,10 +4,9 @@ #------------------------------------------------------------------------------------------------------------- FROM rust:1 + # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/swift-4/.devcontainer/Dockerfile b/containers/swift-4/.devcontainer/Dockerfile index e8930070e9..8217229c28 100644 --- a/containers/swift-4/.devcontainer/Dockerfile +++ b/containers/swift-4/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM swift:4 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/typescript-node-8/.devcontainer/Dockerfile b/containers/typescript-node-8/.devcontainer/Dockerfile index 053777b266..00e5091ca7 100644 --- a/containers/typescript-node-8/.devcontainer/Dockerfile +++ b/containers/typescript-node-8/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM node:8 # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash instead of sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/typescript-node-lts/.devcontainer/Dockerfile b/containers/typescript-node-lts/.devcontainer/Dockerfile index ee43e665ac..a055edad3a 100644 --- a/containers/typescript-node-lts/.devcontainer/Dockerfile +++ b/containers/typescript-node-lts/.devcontainer/Dockerfile @@ -7,8 +7,6 @@ FROM node:lts # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash instead of sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \ diff --git a/containers/ubuntu-18.04-git/.devcontainer/Dockerfile b/containers/ubuntu-18.04-git/.devcontainer/Dockerfile index 127c43d931..b84152c0bf 100644 --- a/containers/ubuntu-18.04-git/.devcontainer/Dockerfile +++ b/containers/ubuntu-18.04-git/.devcontainer/Dockerfile @@ -6,8 +6,6 @@ FROM ubuntu:bionic # Avoid warnings by switching to noninteractive ENV DEBIAN_FRONTEND=noninteractive -# Set the default shell to bash rather than sh -ENV SHELL /bin/bash # Configure apt and install packages RUN apt-get update \