blob: 1422603a1822594521f721ecb1ef8c5bd865a29c [file] [log] [blame]
FROM ruby:2.6.3
RUN apt-get update \
&& apt-get install -y \
nodejs \
python-pygments \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/
RUN gem install \
github-pages \
jekyll \
jekyll-feed \
jekyll-redirect-from \
jekyll-seo-tag \
kramdown \
rdiscount \
rouge
# Copy the script
COPY compile.sh /root/compile.sh
# Define the entrypoint
WORKDIR /james-project
ENTRYPOINT ["/root/compile.sh"]