Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit a680b26

Browse files
committed
Switch back to dialog at the end
1 parent bb2f9cb commit a680b26

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

containers/javascript-node-8/.devcontainer/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM node:8
88
# Configure apt
99
ENV DEBIAN_FRONTEND=noninteractive
1010
RUN apt-get update \
11-
&& apt-get -y install --no-install-recommends apt-utils 2>&1
11+
&& apt-get -y install --no-install-recommends apt-utils 2>&1
1212

1313
# Verify git and process tools are installed
1414
RUN apt-get install -y git procps
@@ -27,3 +27,5 @@ RUN npm install -g eslint
2727
RUN apt-get autoremove -y \
2828
&& apt-get clean -y \
2929
&& rm -rf /var/lib/apt/lists/*
30+
ENV DEBIAN_FRONTEND=dialog
31+

containers/javascript-node-lts-mongo/.devcontainer/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM node:lts
88
# Configure apt
99
ENV DEBIAN_FRONTEND=noninteractive
1010
RUN apt-get update \
11-
&& apt-get -y install --no-install-recommends apt-utils 2>&1
11+
&& apt-get -y install --no-install-recommends apt-utils 2>&1
1212

1313
# Verify git and process tools are installed
1414
RUN apt-get install -y git procps
@@ -27,3 +27,5 @@ RUN npm install -g eslint
2727
RUN apt-get autoremove -y \
2828
&& apt-get clean -y \
2929
&& rm -rf /var/lib/apt/lists/*
30+
ENV DEBIAN_FRONTEND=dialog
31+

containers/javascript-node-lts/.devcontainer/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM node:lts
88
# Configure apt
99
ENV DEBIAN_FRONTEND=noninteractive
1010
RUN apt-get update \
11-
&& apt-get -y install --no-install-recommends apt-utils 2>&1
11+
&& apt-get -y install --no-install-recommends apt-utils 2>&1
1212

1313
# Verify git and process tools are installed
1414
RUN apt-get install -y git procps
@@ -27,3 +27,4 @@ RUN npm install -g eslint
2727
RUN apt-get autoremove -y \
2828
&& apt-get clean -y \
2929
&& rm -rf /var/lib/apt/lists/*
30+
ENV DEBIAN_FRONTEND=dialog

containers/typescript-node-8/.devcontainer/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM node:8
88
# Configure apt
99
ENV DEBIAN_FRONTEND=noninteractive
1010
RUN apt-get update \
11-
&& apt-get -y install --no-install-recommends apt-utils 2>&1
11+
&& apt-get -y install --no-install-recommends apt-utils 2>&1
1212

1313
# Verify git and process tools are installed
1414
RUN apt-get install -y git procps
@@ -27,3 +27,4 @@ RUN npm install -g tslint typescript
2727
RUN apt-get autoremove -y \
2828
&& apt-get clean -y \
2929
&& rm -rf /var/lib/apt/lists/*
30+
ENV DEBIAN_FRONTEND=dialog

containers/typescript-node-lts/.devcontainer/Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ FROM node:lts
88
# Configure apt
99
ENV DEBIAN_FRONTEND=noninteractive
1010
RUN apt-get update \
11-
&& apt-get -y install --no-install-recommends apt-utils 2>&1
11+
&& apt-get -y install --no-install-recommends apt-utils 2>&1
1212

1313
# Verify git and process tools are installed
1414
RUN apt-get install -y git procps
@@ -27,3 +27,5 @@ RUN npm install -g tslint typescript
2727
RUN apt-get autoremove -y \
2828
&& apt-get clean -y \
2929
&& rm -rf /var/lib/apt/lists/*
30+
ENV DEBIAN_FRONTEND=dialog
31+

0 commit comments

Comments
 (0)