11 lines
284 B
Docker
11 lines
284 B
Docker
FROM gitpod/workspace-postgres
|
|
|
|
# Install Ruby
|
|
ENV RUBY_VERSION=2.6.5
|
|
RUN bash -lc "rvm install ruby-$RUBY_VERSION && rvm use ruby-$RUBY_VERSION --default"
|
|
|
|
# Install Redis.
|
|
RUN sudo apt-get update \
|
|
&& sudo apt-get install -y \
|
|
redis-server \
|
|
&& sudo rm -rf /var/lib/apt/lists/*
|