File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.187.0/containers/ubuntu/.devcontainer/base.Dockerfile
2
2
3
+ ARG DEBIAN_FRONTEND=noninteractive
4
+
3
5
# [Choice] Ubuntu version: bionic, focal
4
6
ARG VARIANT="focal"
5
7
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
6
8
7
- # [Optional] Uncomment this section to install additional OS packages.
8
- RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
9
+ RUN apt-get update \
9
10
&& apt-get -y install --no-install-recommends build-essential software-properties-common xz-utils g++ sbcl julia python3 python3-pip python3-dev ghc openjdk-11-jdk libssl-dev gfortran libxml2-dev libyaml-dev libgmp-dev libz-dev libncurses5 gnuplot nodejs npm lua5.3 ocaml php ruby-full gnu-smalltalk scratch libfftw3-dev cmake mono-devel
10
11
11
12
# Setup Crystal
@@ -85,7 +86,7 @@ ENV PATH=$PATH:~/swift/usr/bin
85
86
86
87
# Setup viml
87
88
# To run vim script commands use `/usr/bin/vim -c ":source %" <path_to_file>`
88
- RUN export DEBIAN_FRONTEND=noninteractive && apt-get -y install --no-install-recommends vim
89
+ RUN apt-get -y install --no-install-recommends vim
89
90
90
91
# Setup whitespace
91
92
RUN mkdir -p ~/whitespace && git clone https://github.com/wspace/whitespace-haskell ~/whitespace && cd ~/whitespace && make -B
@@ -102,7 +103,7 @@ RUN mkdir -p ~/vlang && wget https://github.com/vlang/v/releases/download/weekly
102
103
ENV PATH=$PATH:~/vlang/v
103
104
104
105
# Install the packages that needed extra help
105
- RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
106
+ RUN apt-get update \
106
107
&& apt-get -y install --no-install-recommends crystal dart nim powershell scala dotnet-sdk-5.0 r-base racket
107
108
108
109
You can’t perform that action at this time.
0 commit comments