We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d913c5 commit 082e076Copy full SHA for 082e076
docker/Dockerfile
@@ -29,6 +29,7 @@ RUN apt update && apt install -y ruby-full rbenv default-jre netbase
29
RUN rbenv install jruby-9.3.4.0
30
# Set jruby as the default ruby version
31
RUN rbenv global jruby-9.3.4.0
32
+RUN rbenv local jruby-9.3.4.0
33
# Installing Bundler
34
RUN gem install bundler
35
# Installing pnpm
@@ -79,6 +80,7 @@ FROM jruby:latest as jruby
79
80
WORKDIR /usr/src/app
81
COPY . .
82
COPY node_modules/ node_modules/
83
+RUN apt update && apt install -y libpq-dev netbase
84
RUN bundle install
85
RUN cp config/settings.example.yml config/settings.yml
86
VOLUME /usr/src/app/config/
0 commit comments