af75c6f684
Signed-off-by: Renovate Bot <bot@renovateapp.com>
8 lines
154 B
Docker
8 lines
154 B
Docker
FROM ruby:3.2
|
|
|
|
RUN apt-get update -qq && \
|
|
apt-get install -y nodejs postgresql-client git && \
|
|
rm -rf /var/lib/apt/lists/
|
|
|
|
RUN gem install rails
|