gitui/.devcontainer/Dockerfile
2020-09-19 12:36:53 +02:00

16 lines
263 B
Docker

FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install -y \
curl \
git \
gnupg2 \
jq \
sudo \
zsh \
vim \
build-essential \
openssl
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="/root/.cargo/bin:$PATH"