-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: update base image to alpine 3.19
- Loading branch information
Showing
3 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.18 | ||
FROM alpine:3.19 | ||
|
||
LABEL maintainer="Beth Skurrie <[email protected]>" | ||
|
||
|
@@ -9,17 +9,17 @@ ADD docker/gemrc /root/.gemrc | |
ADD docker/pact /usr/local/bin/pact | ||
|
||
RUN apk update \ | ||
&& apk add ruby=3.2.2-r0 \ | ||
ruby-io-console=3.2.2-r0 \ | ||
&& apk add ruby=3.2.2-r1 \ | ||
ruby-io-console=3.2.2-r1 \ | ||
ca-certificates=20240226-r0 \ | ||
libressl \ | ||
less \ | ||
git \ | ||
&& apk add --virtual "build-dependencies" \ | ||
build-base=0.5-r3 \ | ||
ruby-dev=3.2.2-r0 \ | ||
ruby-dev=3.2.2-r1 \ | ||
libressl-dev \ | ||
ruby-rdoc=3.2.2-r0 \ | ||
ruby-rdoc=3.2.2-r1 \ | ||
&& gem install bundler -v "~>2.5" \ | ||
&& bundler -v \ | ||
&& bundle config build.nokogiri --use-system-libraries \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:3.18 | ||
FROM alpine:3.19 | ||
|
||
ENV NOKOGIRI_USE_SYSTEM_LIBRARIES=1 | ||
ENV BUNDLE_SILENCE_ROOT_WARNING=1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
ARG NODE_VERSION=18 | ||
FROM node:${NODE_VERSION}-alpine3.18 | ||
FROM node:${NODE_VERSION}-alpine3.19 | ||
|
||
LABEL maintainer="Beth Skurrie <[email protected]>" | ||
|
||
|