File tree 5 files changed +9
-8
lines changed
5 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 18
18
strategy :
19
19
matrix :
20
20
os : [ubuntu-latest]
21
- ruby-version : ["3.3.4 "]
21
+ ruby-version : ["3.3"]
22
22
rust-version : ["1.76.0"]
23
23
24
24
runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change 1
- ruby 3.3.4
1
+ ruby 3.3.5
2
2
rust 1.76.0
3
3
nodejs 22.8.0
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ RUN apk add nodejs npm \
37
37
38
38
ENV LANG=C.UTF-8
39
39
ENV RUBY_YJIT_ENABLE=1
40
- ENV NODEJS_VERSION=20
40
+ ENV NODEJS_VERSION=22
41
41
ENV RACK_ENV=production
42
42
43
43
# replace labradorite with your username on your server
Original file line number Diff line number Diff line change 2
2
3
3
FROM ruby:3.3-alpine3.19 AS builder
4
4
5
- ENV LANG C.UTF-8
5
+ ENV LANG= C.UTF-8
6
6
ENV WORKDIR="/app/"
7
7
WORKDIR ${WORKDIR}
8
8
@@ -34,20 +34,21 @@ RUN apk add nodejs npm \
34
34
&& rm -rf /var/cache/apk/*; \
35
35
npm install -g prettier;
36
36
37
- ENV LANG C.UTF-8
37
+ ENV LANG= C.UTF-8
38
38
ENV RUBY_YJIT_ENABLE=1
39
- ENV NODEJS_VERSION=20
39
+ ENV NODEJS_VERSION=22
40
40
ENV RACK_ENV=test
41
41
42
42
# replace labradorite with your username on your server
43
43
ARG USERNAME=labradorite
44
44
RUN adduser -D ${USERNAME}
45
45
USER ${USERNAME}
46
+ ENV WORKDIR=/home/${USERNAME}
46
47
WORKDIR /home/${USERNAME}
47
48
48
49
EXPOSE 9292
49
50
50
51
COPY --from=gembuilder /usr/local/bundle/ /usr/local/bundle/
51
52
COPY --chown=${USERNAME} . ${WORKDIR}
52
53
53
- CMD bundle exec rake
54
+ CMD [" bundle", " exec rake"]
Original file line number Diff line number Diff line change 8
8
9
9
---
10
10
11
- [ ![ Ruby 3.3.4 Rust 1.76.0] ( https://github.com/simonneutert/labradorite-notebook/actions/workflows/ruby.yml/badge.svg )] ( https://github.com/simonneutert/labradorite-notebook/actions/workflows/ruby.yml )
11
+ [ ![ Ruby 3.3 Rust 1.76.0] ( https://github.com/simonneutert/labradorite-notebook/actions/workflows/ruby.yml/badge.svg )] ( https://github.com/simonneutert/labradorite-notebook/actions/workflows/ruby.yml )
12
12
[ ![ Docker] ( https://github.com/simonneutert/labradorite-notebook/actions/workflows/docker-publish.yml/badge.svg?branch=main&event=push )] ( https://github.com/simonneutert/labradorite-notebook/actions/workflows/docker-publish.yml )
13
13
14
14
---
You can’t perform that action at this time.
0 commit comments