Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
# About APK: https://wiki.alpinelinux.org/wiki/Alpine_Package_Keeper
# Packages are here: https://pkgs.alpinelinux.org/packages

FROM alpine:3.20
FROM alpine:3.21

# Install Ruby and necessary dependencies:
# irb wouldn't run because rdoc was missing

RUN apk add --clean ruby=3.3.3-r0 \
vim && \
RUN apk add --clean ruby \
vim \
ruby-dev \
build-base \
postgresql-dev && \
gem install rdoc && \
gem install bundler

Expand Down