Skip to content
This repository has been archived by the owner on Jun 27, 2022. It is now read-only.

Update ruby docker image to 2.7.4-alpine #422

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
@@ -1,5 +1,5 @@
# Build compilation image
FROM ruby:2.7.2-alpine as builder
FROM ruby:2.7.4-alpine as builder

# The application runs from /app
WORKDIR /app
Expand Down Expand Up @@ -44,7 +44,7 @@ RUN rm -rf node_modules log tmp && \
find /usr/local/bundle/gems -name "*.html" -delete

# Build runtime image
FROM ruby:2.7.2-alpine as production
FROM ruby:2.7.4-alpine as production

# The application runs from /app
WORKDIR /app
Expand Down