mirror of
https://github.com/extrawurst/gitui.git
synced 2024-11-27 00:14:52 +03:00
16 lines
263 B
Docker
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" |