Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include Plugin modules in docker image #1458

Merged
merged 2 commits into from Feb 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .dockerignore
@@ -0,0 +1,5 @@
.git
.github
docs
node_modules
src
7 changes: 5 additions & 2 deletions Dockerfile
Expand Up @@ -18,7 +18,7 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.

FROM python:3.6.8-alpine3.9
FROM python:3.8.1-alpine3.11

# Set build directory
WORKDIR /tmp
Expand All @@ -38,7 +38,10 @@ RUN \
git-fast-import \
openssh \
&& python setup.py install \
&& rm -rf /tmp/*
&& rm -rf /tmp/* \
&& pip install --no-cache-dir \
'mkdocs-minify-plugin>=0.2' \
'mkdocs-git-revision-date-localized-plugin'

# Set working directory
WORKDIR /docs
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Expand Up @@ -20,7 +20,6 @@

# Direct dependencies
mkdocs>=1.0
mkdocs-minify-plugin>=0.2
Pygments>=2.4
markdown>=3.2
pymdown-extensions>=6.3