32 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.1 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.
 | 
						|
#-------------------------------------------------------------------------------------------------------------
 | 
						|
 | 
						|
FROM rust: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 \
 | 
						|
    #
 | 
						|
    # Verify git, needed tools installed
 | 
						|
    && apt-get -y install git procps lsb-release \
 | 
						|
    #
 | 
						|
    # Install other dependencies
 | 
						|
    && apt-get install -y lldb-3.9 \
 | 
						|
    #
 | 
						|
    # Install Rust components
 | 
						|
    && rustup update \
 | 
						|
    && rustup component add rls rust-analysis rust-src \
 | 
						|
    #
 | 
						|
    # 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
 |