Skip to content

Commit

Permalink
chore(deps): update docker base image to alpine 3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
gildesmarais committed Oct 26, 2023
1 parent 058e334 commit 1587da6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0
3.2.2
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.2.2-alpine3.17
FROM ruby:3.2.2-alpine3.18

LABEL maintainer="Gil Desmarais <[email protected]>"

Expand All @@ -11,12 +11,12 @@ ENV PATH="/app/bin:${PATH}"
HEALTHCHECK --interval=30m --timeout=60s --start-period=5s \
CMD curl -f http://${HEALTH_CHECK_USERNAME}:${HEALTH_CHECK_PASSWORD}@localhost:3000/health_check.txt || exit 1

RUN apk add --no-cache \
RUN apk add --no-cache --verbose \
'git=~2' \
'make=~4' \
'gcc=~12' \
'gcc>=12' \
'libc-dev=~0' \
'tzdata>=2022f'
'tzdata>=2023c-r1'

ARG USER=html2rss
ARG UID=991
Expand Down

0 comments on commit 1587da6

Please sign in to comment.