first commit
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
This commit is contained in:
17
base/phpmyadmin/4.4.15.6/Dockerfile
Normal file
17
base/phpmyadmin/4.4.15.6/Dockerfile
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM vulhub/php:5.3-apache
|
||||
|
||||
LABEL maintainer="phithon <root@leavesongs.com>"
|
||||
|
||||
RUN set -ex \
|
||||
&& apt-get update \
|
||||
&& apt-get install -y --no-install-recommends unzip \
|
||||
&& rm -r /var/lib/apt/lists/*
|
||||
|
||||
ARG SOURCE_URL=https://files.phpmyadmin.net/phpMyAdmin/4.4.15.6/phpMyAdmin-4.4.15.6-all-languages.zip
|
||||
|
||||
RUN set -ex \
|
||||
&& cd /tmp \
|
||||
&& curl -#SL ${SOURCE_URL} -o /tmp/phpmyadmin.zip \
|
||||
&& unzip -q /tmp/phpmyadmin.zip \
|
||||
&& cp -r phpMyAdmin-*/* /var/www/html/ \
|
||||
&& rm -rf /tmp/*
|
Reference in New Issue
Block a user