summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2018-10-07 14:41:00 +0200
committerChristian Poessinger <christian@poessinger.com>2018-10-07 14:41:00 +0200
commit008377c0ec89b30fc19f27b190c18d9051c7d0ef (patch)
tree19ad11429942ed851d9350c99e9daf91a7c3307d
parente175b066d4701be34352db2a17cd31e4195d4af9 (diff)
downloadvyos-documentation-008377c0ec89b30fc19f27b190c18d9051c7d0ef.tar.gz
vyos-documentation-008377c0ec89b30fc19f27b190c18d9051c7d0ef.zip
Add Dockerfile for Ubuntu 18.04 container to build the docs
-rw-r--r--Dockerfile27
1 files changed, 27 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 00000000..bfa02a91
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,27 @@
+# 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 ubuntu:18.04
+
+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 ubuntu
+RUN useradd -d /home/ubuntu -ms /bin/bash -g 1000 -u 1000 ubuntu && \
+ echo "ubuntu:ubuntu" | chpasswd && \
+ adduser ubuntu sudo
+
+RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
+
+USER ubuntu
+WORKDIR ~