Skip to content

Commit dec2303

Browse files
authored
Update to ruby 3.4 (#94)
1 parent 48ead15 commit dec2303

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
#
33
# For development:
44
# docker run -it -v $PWD:/project -v $PWD:/tmp/src -w /tmp/src ruby_language_server sh -c 'bundle && guard'
5-
FROM ruby:3.3-alpine
5+
FROM ruby:3.4-alpine
66
LABEL maintainer="kurt@CircleW.org"
77

88
RUN gem update bundler
99

1010
# Needed for byebug and some other gems
1111
RUN apk update
12-
RUN apk add curl make g++ sqlite-dev
12+
RUN apk add curl make g++ sqlite-dev yaml-dev
1313

1414
WORKDIR /usr/local/src
1515
RUN curl -O -L https://github.com/mateusza/SQLite-Levenshtein/archive/master.zip
@@ -19,6 +19,7 @@ RUN ./configure
1919
RUN make -j 8 install
2020

2121
WORKDIR /app
22+
RUN rm -rf /usr/local/src
2223

2324
# We expect the target project to be mounted here:
2425
ENV RUBY_LANGUAGE_SERVER_PROJECT_ROOT=/project/

0 commit comments

Comments
 (0)