Skip to content

Commit 2d913c5

Browse files
Fix docker images a little bit
1 parent cd49dc9 commit 2d913c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ WORKDIR /usr/src/app
2424
COPY package*.json ./
2525
COPY . .
2626
# Installing Ruby and JRuby, and JRE
27-
RUN apt update && apt install -y ruby-full rbenv default-jre
27+
RUN apt update && apt install -y ruby-full rbenv default-jre netbase
2828
# Install jruby
2929
RUN rbenv install jruby-9.3.4.0
3030
# Set jruby as the default ruby version
@@ -42,7 +42,7 @@ VOLUME /usr/src/app/config/
4242
# Run the app
4343
EXPOSE 9293
4444
EXPOSE 9294
45-
ENTRYPOINT [ "bundle", "exec", "ruby", "cli/cli.rb", "start", "--node"
45+
ENTRYPOINT [ "bundle", "exec", "ruby", "cli/cli.rb", "start", "--node" ]
4646

4747
FROM ghcr.io/graalvm/truffleruby-community:24-debian as truffleruby-node
4848
WORKDIR /usr/src/app

0 commit comments

Comments
 (0)