Skip to content

Commit bc2af3d

Browse files
committed
update deprecation warning for docker
1 parent 41a9cac commit bc2af3d

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.github/workflows/ruby.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
matrix:
2020
os: [ubuntu-latest]
21-
ruby-version: ["3.3.4"]
21+
ruby-version: ["3.3"]
2222
rust-version: ["1.76.0"]
2323

2424
runs-on: ${{ matrix.os }}

.tool-versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
ruby 3.3.4
1+
ruby 3.3.5
22
rust 1.76.0
33
nodejs 22.8.0

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN apk add nodejs npm \
3737

3838
ENV LANG=C.UTF-8
3939
ENV RUBY_YJIT_ENABLE=1
40-
ENV NODEJS_VERSION=20
40+
ENV NODEJS_VERSION=22
4141
ENV RACK_ENV=production
4242

4343
# replace labradorite with your username on your server

Dockerfile.test

+5-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
FROM ruby:3.3-alpine3.19 AS builder
44

5-
ENV LANG C.UTF-8
5+
ENV LANG=C.UTF-8
66
ENV WORKDIR="/app/"
77
WORKDIR ${WORKDIR}
88

@@ -34,20 +34,21 @@ RUN apk add nodejs npm \
3434
&& rm -rf /var/cache/apk/*; \
3535
npm install -g prettier;
3636

37-
ENV LANG C.UTF-8
37+
ENV LANG=C.UTF-8
3838
ENV RUBY_YJIT_ENABLE=1
39-
ENV NODEJS_VERSION=20
39+
ENV NODEJS_VERSION=22
4040
ENV RACK_ENV=test
4141

4242
# replace labradorite with your username on your server
4343
ARG USERNAME=labradorite
4444
RUN adduser -D ${USERNAME}
4545
USER ${USERNAME}
46+
ENV WORKDIR=/home/${USERNAME}
4647
WORKDIR /home/${USERNAME}
4748

4849
EXPOSE 9292
4950

5051
COPY --from=gembuilder /usr/local/bundle/ /usr/local/bundle/
5152
COPY --chown=${USERNAME} . ${WORKDIR}
5253

53-
CMD bundle exec rake
54+
CMD ["bundle", "exec rake"]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
---
1010

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)
1212
[![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)
1313

1414
---

0 commit comments

Comments
 (0)