website/Dockerfile

23 lines
618 B
Docker
Raw Normal View History

2023-01-24 20:51:59 +00:00
FROM ruby:3.2.2-alpine AS builder
LABEL stage=distrust-co-builder
2023-01-24 20:51:59 +00:00
RUN apk update && apk add g++ make git git-lfs
RUN mkdir -p /home
COPY Gemfile /home
COPY Gemfile.lock /home
2023-01-24 20:51:59 +00:00
COPY _vendor /home/_vendor
WORKDIR /home
RUN bundle install
COPY . /home
RUN jekyll build
2023-01-24 20:51:59 +00:00
FROM debian:bookworm AS mime-types
RUN apt-get update && apt-get install -y media-types
RUN echo 'types {' > /tmp/mime.types
RUN sed -e '/^$/d' -e 's/$/;/' /etc/mime.types >> /tmp/mime.types
RUN echo '}' >> /tmp/mime.types
FROM nginx
COPY --from=builder /home/_site /usr/share/nginx/html
COPY --from=mime-types /tmp/mime.types /etc/nginx/mime.types