diff options
| author | sickcodes <[email protected]> | 2020-10-05 08:01:45 +0000 |
|---|---|---|
| committer | sickcodes <[email protected]> | 2020-10-05 08:01:45 +0000 |
| commit | 3972e009de4e22ef7b8aaac966956f00e3f9433a (patch) | |
| tree | d5314ac1879bb2a39d2cb2604b7e856ee3cf8d93 /Dockerfile | |
| parent | Merge pull request #87 from MrBenFTW/patch-1 (diff) | |
| download | docker-osx-3972e009de4e22ef7b8aaac966956f00e3f9433a.tar.xz docker-osx-3972e009de4e22ef7b8aaac966956f00e3f9433a.zip | |
Add vim and nano to the container, expand on ipv4 forwarding docs, add info about ${DISPLAY:-:0.0}
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -71,8 +71,9 @@ RUN tee -a /etc/pacman.conf <<< '[community-testing]' \ && tee -a /etc/pacman.conf <<< 'Include = /etc/pacman.d/mirrorlist' RUN pacman -Syu --noconfirm \ - && pacman -S sudo git make automake gcc python go autoconf cmake pkgconf alsa-utils fakeroot --noconfirm \ + && pacman -S sudo git make automake gcc python go autoconf cmake pkgconf alsa-utils fakeroot vim nano --noconfirm \ && yes | pacman -Scc \ + && ln -s /bin/vim /bin/vi \ && useradd arch -p arch \ && tee -a /etc/sudoers <<< 'arch ALL=(ALL) NOPASSWD: ALL' \ && mkdir /home/arch \ |