]> git.r.bdr.sh - rbdr/r.bdr.sh/blame - Dockerfile
Remove failing bit
[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
b61e5315
RBR
12RUN bundle config --global deployment 'true'
13RUN bundle config set --local without 'development'
300639b4
RBR
14
15WORKDIR /app
16
17COPY Gemfile.lock .
18COPY Gemfile .
b61e5315 19RUN bundle install
300639b4
RBR
20
21COPY scripts/mime.types /etc/mime.types
22COPY . .
23
377a62f3 24ENTRYPOINT ["bundle", "exec", "jekyll"]