From a4cbf5c82e236d0b8dd0f158f9da4ffbf627ecf1 Mon Sep 17 00:00:00 2001 From: CatDeployed Date: Tue, 24 Jul 2018 01:29:49 -0400 Subject: [PATCH] more testing --- alpine/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index 3f67eaa..1877dd6 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -1,6 +1,6 @@ -FROM ruby:2.4-alpine +FROM ruby:2.5-alpine -RUN apk --no-cache add nodejs mariadb-client git bash python2 libcap py-setuptools py-pip build-base python-dev mariadb-dev tzdata \ +RUN apk --no-cache add nodejs mariadb-client git bash python2 libcap py-setuptools py-pip build-base python-dev mariadb-dev tzdata mariadb-client-libs \ && pip install j2cli \ && git clone https://github.com/atech/postal.git /opt/postal \ && rm -rf /var/lib/apt/lists/* \ @@ -11,7 +11,7 @@ RUN apk --no-cache add nodejs mariadb-client git bash python2 libcap py-setuptoo && adduser -S -G postal -h /opt/postal -s /bin/bash postal \ && chown -R postal:postal /opt/postal/ \ && /opt/postal/bin/postal bundle /opt/postal/vendor/bundle \ - && apk del mariadb-dev git \ + && apk del git mariadb-dev \ && rm -rf /var/cache/apk/* ## Adjust permissions