chore: update docker base image to 3.1.2-alpine

This commit is contained in:
Vishnu Narayanan 2022-10-05 14:32:09 +05:30
parent 547b3fa490
commit d84a47f699
No known key found for this signature in database
GPG key ID: 000B7FD5001541AC

View file

@ -1,5 +1,5 @@
# pre-build stage
FROM ruby:3.0.4-alpine AS pre-builder
FROM ruby:3.1.2-alpine AS pre-builder
# ARG default to production settings
# For development docker-compose file overrides ARGS
@ -65,7 +65,7 @@ RUN rm -rf /gems/ruby/3.0.0/cache/*.gem \
&& find /gems/ruby/3.0.0/gems/ \( -name "*.c" -o -name "*.o" \) -delete
# final build stage
FROM ruby:3.0.4-alpine
FROM ruby:3.1.2-alpine
ARG BUNDLE_WITHOUT="development:test"
ENV BUNDLE_WITHOUT ${BUNDLE_WITHOUT}