PowerShell/.devcontainer/Dockerfile
Jos Koelewijn dff80d8de3
Bump .devcontainer version to dotnet 3.1.101 (#11707)
* Bump container version to dotnet 3.1.101

Relates to https://github.com/PowerShell/PowerShell/issues/11694

* Revert "Bump devcontainer version to dotnet 3.1.101"

* bump version number of label on base container
2020-01-29 19:42:25 +00:00

25 lines
1,000 B
Docker

#-------------------------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------
FROM mcr.microsoft.com/dotnet/core/sdk:3.1.101
# 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 \
#
# Verify git, process tools, lsb-release (common in install instructions for CLIs) installed
&& apt-get -y install git procps lsb-release \
#
# Clean up
&& apt-get autoremove -y \
&& apt-get clean -y \
&& rm -rf /var/lib/apt/lists/*
# Switch back to dialog for any ad-hoc use of apt-get
ENV DEBIAN_FRONTEND=dialog