From f1c00305f749292e2906e8aba8058fc4fc5c5963 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Fri, 4 Dec 2015 14:44:29 +0100 Subject: [PATCH] Base image directly on alpine MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This allows us to optimize list of included packages. Signed-off-by: Michal Čihař --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 478690a..a2cdc20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,7 @@ -FROM netroby/alpine-php +FROM alpine + +RUN apk add --update php-cli php-mysqli wget php-ctype php-xml php-gd php-zlib php-openssl php-curl php-opcache php-json \ + && rm -rf /var/cache/apk/* RUN wget --progress=dot:mega https://www.phpmyadmin.net/downloads/phpMyAdmin-latest-all-languages.tar.gz \ && tar xzf phpMyAdmin*.tar.gz \