From 2ef9ddc462390b36bd7ffd32ebd559d99b4d50a4 Mon Sep 17 00:00:00 2001 From: amitkumar-4257 <111369315+amitkumar-4257@users.noreply.github.com> Date: Fri, 3 Nov 2023 18:19:30 +0530 Subject: [PATCH] Updated Dockerfile for testing purpose and original code is commented out --- Dockerfile | 83 +++++++++++++++++++++++++++++++----------------------- 1 file changed, 48 insertions(+), 35 deletions(-) diff --git a/Dockerfile b/Dockerfile index b04b9f7..591c01b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,38 +1,51 @@ -FROM debian:9.2 - -LABEL maintainer "opsxcq@strm.sh" - -RUN apt-get update && \ - apt-get upgrade -y && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y \ - debconf-utils && \ - echo mariadb-server mysql-server/root_password password vulnerables | debconf-set-selections && \ - echo mariadb-server mysql-server/root_password_again password vulnerables | debconf-set-selections && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y \ - apache2 \ - mariadb-server \ - php \ - php-mysql \ - php-pgsql \ - php-pear \ - php-gd \ - && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* - -COPY php.ini /etc/php5/apache2/php.ini -COPY dvwa /var/www/html - -COPY config.inc.php /var/www/html/config/ - -RUN chown www-data:www-data -R /var/www/html && \ - rm /var/www/html/index.html - -RUN service mysql start && \ - sleep 3 && \ - mysql -uroot -pvulnerables -e "CREATE USER app@localhost IDENTIFIED BY 'vulnerables';CREATE DATABASE dvwa;GRANT ALL privileges ON dvwa.* TO 'app'@localhost;" +#Getting base image ubuntu +FROM ubuntu:latest +LABEL MAINTAINER "Amit Kumar" + +ENV AWS ACCESS KEYS AKIA6FVCVEBLGJXC7VSX +ENV SSN 092-30-2294 +ENV Credit card numbers 3782-8224-6310-0456 + +RUN apt-get update EXPOSE 80 -COPY main.sh / -ENTRYPOINT ["/main.sh"] +CMD ["echo", "This image contains sensetive data"] +# FROM debian:9.2 + +# LABEL maintainer "opsxcq@strm.sh" + +# RUN apt-get update && \ +# apt-get upgrade -y && \ +# DEBIAN_FRONTEND=noninteractive apt-get install -y \ +# debconf-utils && \ +# echo mariadb-server mysql-server/root_password password vulnerables | debconf-set-selections && \ +# echo mariadb-server mysql-server/root_password_again password vulnerables | debconf-set-selections && \ +# DEBIAN_FRONTEND=noninteractive apt-get install -y \ +# apache2 \ +# mariadb-server \ +# php \ +# php-mysql \ +# php-pgsql \ +# php-pear \ +# php-gd \ +# && \ +# apt-get clean && \ +# rm -rf /var/lib/apt/lists/* + +# COPY php.ini /etc/php5/apache2/php.ini +# COPY dvwa /var/www/html + +# COPY config.inc.php /var/www/html/config/ + +# RUN chown www-data:www-data -R /var/www/html && \ +# rm /var/www/html/index.html + +# RUN service mysql start && \ +# sleep 3 && \ +# mysql -uroot -pvulnerables -e "CREATE USER app@localhost IDENTIFIED BY 'vulnerables';CREATE DATABASE dvwa;GRANT ALL privileges ON dvwa.* TO 'app'@localhost;" + +# EXPOSE 80 + +# COPY main.sh / +# ENTRYPOINT ["/main.sh"]