2019-05-01 13:00:29 -07:00
|
|
|
#-------------------------------------------------------------------------------------------------------------
|
|
|
|
|
# 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
|
|
|
|
|
|
2019-06-21 02:20:07 +00:00
|
|
|
# Avoid warnings by switching to noninteractive
|
2019-05-22 09:59:50 -07:00
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
2019-05-01 13:00:29 -07:00
|
|
|
|
2019-06-21 02:20:07 +00:00
|
|
|
# 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 \
|
2019-05-01 13:00:29 -07:00
|
|
|
&& apt-get clean -y \
|
2019-05-22 09:59:50 -07:00
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
2019-06-21 02:20:07 +00:00
|
|
|
# Switch back to dialog for any ad-hoc use of apt-get
|
|
|
|
|
ENV DEBIAN_FRONTEND=dialog
|