]> git.r.bdr.sh - rbdr/r.bdr.sh/blame - Dockerfile
Add notice of security
[rbdr/r.bdr.sh] / Dockerfile
CommitLineData
86893ba1 1FROM ruby:3.0-alpine
300639b4
RBR
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 .
b61e5315 17RUN bundle install
300639b4
RBR
18
19COPY scripts/mime.types /etc/mime.types
20COPY . .
21
91167690 22ENTRYPOINT ["jekyll"]