зеркало из https://github.com/dotnet/fsharp.git
24 строки
1.0 KiB
Docker
24 строки
1.0 KiB
Docker
#-------------------------------------------------------------------------------------------------------------
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
|
|
#-------------------------------------------------------------------------------------------------------------
|
|
|
|
ARG VARIANT=7.0.102-bullseye-slim-amd64
|
|
FROM mcr.microsoft.com/dotnet/sdk:${VARIANT}
|
|
|
|
# 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 dialog 2>&1 \
|
|
# Verify bash, git, process tools, lsb-release (common in install instructions for CLIs) installed
|
|
&& apt-get -y install bash git openssh-client less iproute2 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
|