mirror of
https://github.com/php-fig/www.php-fig.org.git
synced 2026-03-24 06:52:15 +01:00
This is due to the fact that on Upsun/Platform.sh PHP 8.5 comes packaged with that Ruby version
20 lines
331 B
Docker
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
|