493dfefa70
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
8 lines
154 B
Docker
8 lines
154 B
Docker
FROM ruby:3.4
|
|
|
|
RUN apt-get update -qq && \
|
|
apt-get install -y nodejs postgresql-client git && \
|
|
rm -rf /var/lib/apt/lists/
|
|
|
|
RUN gem install rails
|