blob: de73bae7f73869cbe645b08780efc27ab9ca861c [file] [log] [blame]
FROM phusion/passenger-full
LABEL org.opencontainers.image.authors="poorejc@apache.org"
# Cache bundle
COPY Gemfile* /tmp/
WORKDIR /tmp
RUN bundle install
ENV app /app
# Install npm modules
COPY package.json /tmp/
WORKDIR /tmp
RUN npm install -g
# Add src code
RUN mkdir $app
WORKDIR $app
ADD . $app
# Jekyll buld
RUN bundle exec jekyll build
WORKDIR $app/_site
EXPOSE 8000