Skip to content

Commit d5adbe6

Browse files
authored
Added supported plugins to Docker image (#1458)
1 parent e3e9269 commit d5adbe6

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

.dockerignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.git
2+
.github
3+
docs
4+
node_modules
5+
src

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
1919
# IN THE SOFTWARE.
2020

21-
FROM python:3.6.8-alpine3.9
21+
FROM python:3.8.1-alpine3.11
2222

2323
# Set build directory
2424
WORKDIR /tmp
@@ -38,7 +38,10 @@ RUN \
3838
git-fast-import \
3939
openssh \
4040
&& python setup.py install \
41-
&& rm -rf /tmp/*
41+
&& rm -rf /tmp/* \
42+
&& pip install --no-cache-dir \
43+
'mkdocs-minify-plugin>=0.2' \
44+
'mkdocs-git-revision-date-localized-plugin'
4245

4346
# Set working directory
4447
WORKDIR /docs

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
# Direct dependencies
2222
mkdocs>=1.0
23-
mkdocs-minify-plugin>=0.2
2423
Pygments>=2.4
2524
markdown>=3.2
2625
pymdown-extensions>=6.3

0 commit comments

Comments
 (0)