From 035f7432c46b8eda620e135dd1b2cfddbb4e0ef6 Mon Sep 17 00:00:00 2001 From: James King <james@jamesking56.uk> Date: Mon, 8 Oct 2018 09:23:09 +0100 Subject: [PATCH] fix: Add PHP + Composer to Dockerfile (#2612) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index de82c9c994..6fb2bb54b0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ LABEL name="renovate" WORKDIR /usr/src/app/ -RUN apk add --quiet --no-cache git openssh-client +RUN apk add --quiet --no-cache git openssh-client ca-certificates php php-mbstring php-openssl php-zip php-zlib composer COPY package.json . COPY yarn.lock . RUN yarn install --production && yarn cache clean -- GitLab