Skip to content

Commit

Permalink
fix: update base image to alpine:3.14
Browse files Browse the repository at this point in the history
alpine:3.15 only has packages for ruby 3.0, and we currenly only support 2.7
  • Loading branch information
bethesque committed Mar 17, 2022
1 parent b2fbe97 commit a765d0e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.15
FROM alpine:3.14

LABEL maintainer="Beth Skurrie <[email protected]>"

Expand All @@ -19,13 +19,13 @@ RUN apk update \
"ruby-bundler=2.2.20-r0" \
"ruby-io-console=2.7.5-r0" \
"ca-certificates=20211220-r0" \
"libressl=3.3.3-r0" \
"less=581-r1" \
"git=2.32.0-r0" \
"libressl" \
"less" \
"git" \
&& apk add --virtual "build-dependencies" \
build-base=0.5-r2 \
ruby-dev=2.7.5-r0 \
libressl-dev=3.3.3-r0 \
libressl-dev \
ruby-rdoc=2.7.5-r0 \
\
&& bundler -v \
Expand Down

0 comments on commit a765d0e

Please sign in to comment.