Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# It also improves build times by caching the base stage.

# Base stage
FROM ruby:3.4.8-alpine AS base
FROM ruby:3.4.9-alpine AS base
RUN apk add build-base bzip2-dev curl libc-utils libffi-dev libpq-dev nodejs tzdata yaml-dev xz-dev zlib-dev && rm -rf /var/cache/apk/*

# Set locale and timezone
Expand Down Expand Up @@ -71,7 +71,7 @@ COPY . $INSTALL_PATH
RUN bundle exec rake DATABASE_URL=postgresql:does_not_exist SECRET_KEY_BASE=dummy --quiet assets:precompile

# Runtime stage
FROM ruby:3.4.8-alpine
FROM ruby:3.4.9-alpine
ENV INSTALL_PATH /srv/dss-api
RUN mkdir -p $INSTALL_PATH

Expand Down
Loading