Files
Alessandro Lai b11be7ccaf Update to Ruby 3.3
This is due to the fact that on Upsun/Platform.sh PHP 8.5 comes packaged with that Ruby version
2026-02-24 13:38:38 +01:00

20 lines
331 B
Docker

FROM ruby:3.3.10-slim
RUN apt-get update \
&& apt-get install -y \
build-essential \
curl \
libffi-dev \
libzip-dev \
zip \
&& apt-get clean
# setup user
ARG UID=1000
ARG GID=1000
RUN groupadd -g $GID fig \
&& useradd -g fig -u $UID fig
USER fig
RUN gem install bundler:2.6.5