From 427ce3a3528e76f5038567807f988311e8357227 Mon Sep 17 00:00:00 2001 From: baarkerlounger <5101747+baarkerlounger@users.noreply.github.com> Date: Tue, 4 Jan 2022 14:47:53 +0000 Subject: [PATCH] Pin alpine version to force Node 14 (#186) --- 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