dockerized-workstation/Dockerfile

18 lines
290 B
Docker
Raw Normal View History

2019-01-11 06:41:58 +00:00
FROM ubuntu:18.04
2019-01-11 06:22:53 +00:00
2019-01-11 06:41:58 +00:00
ENV DEBIAN_FRONTEND noninteractive
2019-01-11 06:22:53 +00:00
2019-01-11 06:41:58 +00:00
ADD ./setup-mirror /tmp/setup-mirror
RUN bash /tmp/setup-mirror
2019-01-11 06:22:53 +00:00
2019-01-11 06:41:58 +00:00
RUN apt update && apt upgrade -y
2019-01-11 06:22:53 +00:00
2019-01-11 06:41:58 +00:00
RUN apt install -y \
vim \
command-not-found \
build-essential \
python3 \
python3-pip \
python3-dev \
ruby