-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDockerfile.code
More file actions
21 lines (14 loc) · 798 Bytes
/
Dockerfile.code
File metadata and controls
21 lines (14 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM ubuntu:20.04
MAINTAINER Peter Bui <pbui@nd.edu>
ENV DEBIAN_FRONTEND noninteractive
# Repository configuration for Zig
RUN echo 'deb https://dl.bintray.com/dryzig/zig-ubuntu bionic main' | sudo tee -a /etc/apt/sources.list
RUN apt update -y
# Run-time dependencies
RUN apt install -y python3-tornado python3-requests python3-yaml curl
# Language Support: C, C++, Python3, Bash, Ruby, Nodejs, Java, golang, Guile, Perl6, Haskell, Zig
RUN apt install -y gcc g++ python3 bash ruby nodejs default-jdk-headless golang guile-2.0 perl6 ghc zig
# Language Support: rust
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain stable -y && mv /root/.cargo/bin/* /usr/local/bin/
# Cleanup
RUN apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*