mirror of
https://github.com/phpmyadmin/docker.git
synced 2026-09-24 23:49:37 -05:00
Merge pull request #1 from CybotTM/master
concatenate Dockerfile commands - reduces final images size
This commit is contained in:
+4
-4
@@ -1,9 +1,9 @@
|
||||
FROM netroby/alpine-php
|
||||
|
||||
RUN wget https://www.phpmyadmin.net/downloads/phpMyAdmin-latest-all-languages.tar.gz
|
||||
RUN tar xzf phpMyAdmin*.tar.gz
|
||||
RUN rm phpMyAdmin*.tar.gz
|
||||
RUN mv phpMyAdmin* /www
|
||||
RUN wget https://www.phpmyadmin.net/downloads/phpMyAdmin-latest-all-languages.tar.gz \
|
||||
&& tar xzf phpMyAdmin*.tar.gz \
|
||||
&& rm phpMyAdmin*.tar.gz \
|
||||
&& mv phpMyAdmin* /www
|
||||
|
||||
COPY config.inc.php /www/config.inc.php
|
||||
|
||||
|
||||
Reference in New Issue
Block a user