File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM ruby:3.3-bookworm
1+ ARG RUBY_VERSION=3.3
2+ ARG NODE_VERSION=20
3+ ARG BUNDLER_VERSION=2.3.25
4+
5+ FROM ruby:${RUBY_VERSION}-bookworm
6+
7+ ARG NODE_VERSION
8+ ARG BUNDLER_VERSION
29
310RUN apt-get update && apt-get install -y --no-install-recommends \
411 curl \
@@ -9,11 +16,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
916 sudo \
1017 && rm -rf /var/lib/apt/lists/*
1118
12- RUN curl -fsSL https://deb.nodesource.com/setup_20 .x | bash - \
19+ RUN curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION} .x | bash - \
1320 && apt-get install -y --no-install-recommends nodejs \
1421 && rm -rf /var/lib/apt/lists/*
1522
16- RUN gem install bundler:2.3.25
23+ RUN gem install bundler:${BUNDLER_VERSION}
1724
1825ARG USERNAME=vscode
1926ARG USER_UID=1000
Original file line number Diff line number Diff line change 1+ version : 2
2+ updates :
3+ - package-ecosystem : " bundler"
4+ directory : " /"
5+ schedule :
6+ interval : " weekly"
7+ day : " monday"
8+ groups :
9+ ruby-deps :
10+ patterns : ["*"]
11+
12+ - package-ecosystem : " npm"
13+ directory : " /scripts/og-image-gen"
14+ schedule :
15+ interval : " weekly"
16+ day : " monday"
17+ groups :
18+ js-deps :
19+ patterns : ["*"]
20+
21+ - package-ecosystem : " docker"
22+ directory : " /.devcontainer"
23+ schedule :
24+ interval : " monthly"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments