From 9028b14c9829fc6d92ef4da1ca3607a5e04bd0cd Mon Sep 17 00:00:00 2001 From: Hariprasath Ravichandran Date: Thu, 9 May 2024 06:57:01 +0530 Subject: [PATCH] Fix for docker image not working --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 084d284..c163c3b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM ruby:3.2-alpine +FROM dockage/alpine:3.18.3 LABEL maintainer="Hariprasath Ravichandran " @@ -23,7 +23,7 @@ RUN if [ "$VERSION" = "unknown" ]; then \ exit 1; \ fi RUN apk update && apk upgrade -RUN apk --no-cache --update add build-base ruby ruby-dev ruby-json ruby-etc sqlite-libs sqlite-dev gcompat \ +RUN apk --no-cache --update add build-base ruby ruby-dev ruby-json ruby-etc sqlite sqlite-libs sqlite-dev gcompat \ && gem install sqlite3 --no-document --platform ruby \ && gem install mailcatcher:${VERSION} --no-document \ && apk del --rdepends --purge build-base