50 lines
1.4 KiB
Docker
50 lines
1.4 KiB
Docker
#FROM docker-registry1.in.thelinuxpro.net:5000/tlp/tlp_jekyll:latest
|
|
FROM docker-registry1.in.thelinuxpro.net:5000/sites/photos_kameronkenny_com_web:latest
|
|
|
|
LABEL image.author.name="Kameron Kenny"
|
|
LABEL image.author.email="kameron@localhost"
|
|
LABEL description="A Jekyll site for photos.kameronkenny.com."
|
|
|
|
ARG LOCATION_JEKYLL="/usr/local/jekyll"
|
|
|
|
ENV GEM_HOME="/usr/local/gems"
|
|
ENV PATH="/usr/local/gems/bin:$PATH"
|
|
ENV SITE="photos.kameronkenny.com"
|
|
ENV SITE_ROOT="$LOCATION_JEKYLL/sites/$SITE"
|
|
ENV SITE_PATH="$SITE_ROOT/_site"
|
|
ENV NGINX_CONF_D="$LOCATION_JEKYLL/nginx"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt update && apt -y upgrade
|
|
RUN apt install -y libmagick++-dev
|
|
|
|
### Shouldn't need this, it's in the Gemfile, but hold just in case.
|
|
#RUN gem install rmagick exifr
|
|
|
|
RUN mkdir -p $SITE_ROOT
|
|
|
|
WORKDIR /usr/local/sbin
|
|
COPY ./entrypoint.sh .
|
|
|
|
WORKDIR $NGINX_CONF_D
|
|
COPY ./app/conf/nginx/nginx.conf .
|
|
|
|
WORKDIR $LOCATION_JEKYLL/sites/$SITE
|
|
COPY . .
|
|
|
|
RUN bundle install
|
|
RUN JEKYLL_ENV=production bundle exec jekyll build
|
|
|
|
## Cleanup to debulk the image
|
|
|
|
#RUN apt remove -y manpages ruby x11-common ruby* make python gcc cpp gnupg git git-man
|
|
#RUN apt -y autoremove
|
|
#RUN test -d $SITE_PATH && for i in $(ls -1 $SITE_ROOT | grep -v _site); do rm -rf $SITE_ROOT/$i ; done
|
|
#RUN rm -rf /root/.bundle/cache
|
|
#RUN rm -rf /var/cache
|
|
#RUN rm -rf /var/lib/apt
|
|
#RUN rm -rf /var/lib/dpkg
|
|
|
|
ENTRYPOINT /usr/local/sbin/entrypoint.sh
|