From bd6d4aa77b04cbd73259020e24ad646e42875cb4 Mon Sep 17 00:00:00 2001 From: Toni Tauro Date: Mon, 30 Jan 2023 08:39:27 +0100 Subject: [PATCH] fix(Dockerfile): not using alpine in builder Signed-off-by: Toni Tauro --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 49ae9c1..e59ab98 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:alpine as builder +FROM ruby as builder LABEL org.opencontainers.image.authors="Toni Tauro " @@ -6,8 +6,8 @@ COPY src /src WORKDIR /src -RUN apk update && apk upgrade && \ -apk add build-base git && gem install bundler && \ +RUN apt update && apt full-upgrade -y && \ +gem install bundler && \ bundle && bundle exec jekyll b FROM nginx:alpine