website_example/Dockerfile
sthope 963bc55c07
Some checks failed
continuous-integration/drone/push Build is failing
Update 'Dockerfile'
2021-09-05 02:30:57 +02:00

17 lines
428 B
Docker

FROM jekyll/builder as builder
RUN apk update && apk add --update nodejs nodejs-npm
WORKDIR /app/jekyll
COPY ./jekyll/Gemfile* /app/jekyll/
RUN bundle install
COPY ./jekyll /app/jekyll/
RUN mkdir -p /app/jekyll/_site && jekyll build
FROM nginx:alpine
LABEL maintainer="Sthope <hopelessautomations@gmail.com>"
RUN rm -f /etc/nginx/conf.d/* && rm -rf /app/*
COPY --from=builder /app/jekyll/_site /app
COPY ./nginx /etc/nginx/