diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-04-20 14:16:14 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-04-20 14:16:14 +0200 |
commit | 0a0e3c5ebd835a4d90f47ba47300cd1841845bbc (patch) | |
tree | eb4ac69028ac61e2c4145f4eb70e7ecf57d52507 /Dockerfile | |
parent | c208ed8d03ac8f4c6be2ff698d60f6a6bf8fe0db (diff) | |
download | vyos-documentation-0a0e3c5ebd835a4d90f47ba47300cd1841845bbc.tar.gz vyos-documentation-0a0e3c5ebd835a4d90f47ba47300cd1841845bbc.zip |
Docker: update Dockerfile and description
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 929f36a3..00000000 --- a/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -# Must be run with --privileged flag -# Recommended to run the container with a volume mapped -# in order to easy exprort images built to "external" world -FROM debian:stretch - -RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ - vim \ - git \ - mc \ - make \ - python3-sphinx \ - python-sphinx-rtd-theme \ - latexmk \ - texlive-latex-recommended \ - texlive-fonts-recommended \ - texlive-latex-extra sudo \ - && rm -rf /var/lib/apt/lists/* - -RUN groupadd -g 1000 debian -RUN useradd -d /home/debian -ms /bin/bash -g 1000 -u 1000 debian && \ - echo "debian:debian" | chpasswd && \ - adduser debian sudo - -RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers - -USER debian -WORKDIR ~ |