14 lines
348 B
Docker
14 lines
348 B
Docker
FROM jekyll/jekyll
|
|
Label MAINTAINER Amir Pourmand
|
|
#install imagemagick tool for convert command
|
|
RUN apk add --no-cache --virtual .build-deps \
|
|
libxml2-dev \
|
|
shadow \
|
|
autoconf \
|
|
g++ \
|
|
make \
|
|
&& apk add --no-cache imagemagick-dev imagemagick
|
|
WORKDIR /srv/jekyll
|
|
ADD Gemfile /srv/jekyll/
|
|
RUN bundle install
|