-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDockerfile
More file actions
34 lines (27 loc) · 881 Bytes
/
Dockerfile
File metadata and controls
34 lines (27 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM adstewart/eleventy:1.0.1
WORKDIR /opt/site
COPY package.json package-lock.json ./
RUN \
cd /opt/site && \
npm install
# --save-dev \
# clean-css@=5.3.2 \
# csslint@^1.0.5 \
# eleventy-plugin-excerpt@^1.1.2 \
# eleventy-plugin-toc@^1.1.5 \
# @11ty/eleventy-plugin-rss@^1.2.0 \
# markdown-it-bracketed-spans \
# markdown-it-deflist@^2.1.0 \
# markdown-it-div \
# markdown-it-docutils \
# markdown-it-fancy-lists@=1.2.3 \
# markdown-it-footnote@^3.0.3 \
# markdown-it-html \
# markdown-it-katex \
# luxon@=3.4.3 \
# moment@=2.29.4 \
# string-strip-html@=8.3.0 \
# striptags
WORKDIR /app
# markdown-it-html:
# source repo is: https://github.com/Akimyou/markdown-it-html/