We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d110949 commit 1ecffcaCopy full SHA for 1ecffca
Gemfile.lock
@@ -39,7 +39,7 @@ DEPENDENCIES
39
html-proofer (~> 3.19)
40
41
RUBY VERSION
42
- ruby 3.1.6p260
+ ruby 3.1.2
43
44
BUNDLED WITH
45
2.6.5
docker/ruby/Dockerfile
@@ -1,17 +1,19 @@
1
-FROM ruby:3.1-alpine
+FROM ruby:3.1.6-slim-bullseye
2
3
-RUN apk add --no-cache \
4
- build-base \
+RUN apt-get update \
+ && apt-get install -y \
5
+ build-essential \
6
curl \
7
libffi-dev \
8
libzip-dev \
- zip
9
+ zip \
10
+ && apt-get clean
11
12
# setup user
13
ARG UID=1000
14
ARG GID=1000
-RUN addgroup -g $GID fig && adduser -D -G fig -u $UID fig
15
+RUN groupadd -g $GID fig \
16
+ && useradd -g fig -u $UID fig
17
USER fig
18
-# update to bundler 2.0
19
RUN gem install bundler:2.6.5
0 commit comments