From 4e70106596bda822df4e16e94bc683d1a2d2acab Mon Sep 17 00:00:00 2001 From: baarkerlounger Date: Tue, 4 Jan 2022 14:14:14 +0000 Subject: [PATCH] Pin alpine version to force Node 14 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3ff070143..b9bfae502 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build compilation image -FROM ruby:3.0.3-alpine as builder +FROM ruby:3.0.3-alpine3.14 as builder # The application runs from /app WORKDIR /app @@ -12,7 +12,7 @@ RUN apk add --update --no-cache tzdata && \ # build-base: complication tools for bundle # yarn: node package manager # postgresql-dev: postgres driver and libraries -RUN apk add --no-cache build-base yarn postgresql-dev +RUN apk add --no-cache build-base yarn postgresql-dev git # Install bundler to run bundle exec # This should be the same version as the Gemfile.lock