You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ad...@apache.org on 2019/04/01 22:09:48 UTC

[mynewt-site] branch master updated: Add dockerfile to build docs

This is an automated email from the ASF dual-hosted git repository.

aditi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-site.git


The following commit(s) were added to refs/heads/master by this push:
     new b704371  Add dockerfile to build docs
     new 220c57b  Merge pull request #508 from utzig/add-dockerfile
b704371 is described below

commit b70437116b98524e98730d6dddf62327c96daa5a
Author: Fabio Utzig <ut...@apache.org>
AuthorDate: Mon Apr 1 19:06:09 2019 -0300

    Add dockerfile to build docs
---
 Dockerfile | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..404d8e7
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,18 @@
+FROM ubuntu:bionic
+
+ENV DEBIAN_FRONTEND noninteractive
+
+RUN apt-get update && \
+    apt-get install -y python \
+                    python-pip \
+                    git \
+                    curl \
+                    vim \
+                    doxygen \
+                    jq && \
+    apt-get autoremove && \
+    apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
+
+# Install required python modules
+COPY requirements.txt /tmp
+RUN pip install -r /tmp/requirements.txt