]> git.r.bdr.sh - rbdr/r.bdr.sh/blame - Dockerfile
Add well-known to include
[rbdr/r.bdr.sh] / Dockerfile
CommitLineData
300639b4
RBR
1FROM ruby:3-alpine
2
3RUN apk add --no-cache \
4 build-base \
5 python3 \
6 py3-pip
7
8RUN pip3 install awscli
9RUN rm -rf /var/cache/apk/*
10
11RUN bundle config --global frozen 1
12
13WORKDIR /app
14
15COPY Gemfile.lock .
16COPY Gemfile .
17RUN bundle install
18
19COPY scripts/mime.types /etc/mime.types
20COPY . .
21
22ENTRYPOINT ["jekyll"]