c5e81eab43
Signed-off-by: Rogerio Angeliski <angeliski@hotmail.com>
10 lines
133 B
Docker
10 lines
133 B
Docker
FROM ruby:3.0
|
|
|
|
RUN apt-get update -qq && \
|
|
apt-get install -y \
|
|
nodejs \
|
|
postgresql-client \
|
|
git
|
|
|
|
RUN gem install rails
|