e3b817f01d
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
8 lines
154 B
Docker
8 lines
154 B
Docker
FROM ruby:3.3
|
|
|
|
RUN apt-get update -qq && \
|
|
apt-get install -y nodejs postgresql-client git && \
|
|
rm -rf /var/lib/apt/lists/
|
|
|
|
RUN gem install rails
|