Removed docker cli from .devconatiner to speed up initial build time. Also added setting to ignore extension recommendations so that users aren't prompted to download the docker extension.

This commit is contained in:
Bowden Kelly 2019-04-15 21:18:22 +00:00
Родитель d919e78e0f
Коммит 7fe0f10855
3 изменённых файлов: 3 добавлений и 8 удалений

Просмотреть файл

@ -10,13 +10,6 @@ FROM debian:9
RUN apt-get update \
&& apt-get install -y git procps lsb-release
# Install Docker CE CLI
RUN apt-get install -y apt-transport-https ca-certificates curl gnupg-agent software-properties-common lsb-release \
&& curl -fsSL https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]')/gpg | apt-key add - \
&& add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') $(lsb_release -cs) stable" \
&& apt-get update \
&& apt-get install -y docker-ce-cli
# Clean up
RUN apt-get autoremove -y \
&& apt-get clean -y \

Просмотреть файл

@ -7,7 +7,6 @@
"streetsidesoftware.code-spell-checker",
"DavidAnson.vscode-markdownlint",
"esbenp.prettier-vscode",
"PeterJausovec.vscode-docker",
"eamodio.gitlens",
"mutantdino.resourcemonitor"
],

3
.vscode/settings.json поставляемый Normal file
Просмотреть файл

@ -0,0 +1,3 @@
{
"extensions.ignoreRecommendations": true
}