From d4d9420fc3f498444e9a00ecc240666d6b48b5c5 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Mon, 8 Jul 2019 08:54:29 +0000 Subject: [PATCH 01/11] saving status --- Dockerfile | 41 +++++++++++++++++++++++++++++++++++++++++ sources.list | 13 +++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 Dockerfile create mode 100644 sources.list diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2fc8cab --- /dev/null +++ b/Dockerfile @@ -0,0 +1,41 @@ +# docker build -t DeleteFB . && \ +# docker run -ti --rm \ +# -e DISPLAY=$DISPLAY \ +# -v /tmp/.X11-unix:/tmp/.X11-unix \ +# DeleteFB + + +FROM ubuntu:bionic + +# Update and apt install + # add your own sources.list file here in order to speed up the build + ADD sources.list /etc/apt/sources.list + + RUN apt-get update && \ + apt-get install -y firefox \ + git \ + python3 \ + python3-pip \ + libcanberra-gtk-module \ + curl \ + sudo \ + vim + +# creating user + ENV user username + RUN export uid=1000 gid=1000 && \ + mkdir -p /home/${user} && \ + echo "${user}:x:${uid}:${gid}:${user},,,:/home/${user}:/bin/bash" >> /etc/passwd && \ + echo "${user}:x:${uid}:" >> /etc/group && \ + echo "${user} ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/${user} && \ + chmod 0440 /etc/sudoers.d/${user} && \ + chown ${uid}:${gid} -R /home/${user} && \ + usermod -aG sudo ${user} + +# delete FB repo + RUN pip3 install --user delete-facebook-posts + RUN pip3 install --user git+https://github.com/weskerfoot/DeleteFB.git + RUN git clone https://github.com/weskerfoot/DeleteFB.git + WORKDIR ./DeleteFB + RUN pip3 install -r requirements.txt + CMD python3 -m ./deletefb/deletefb.py \ No newline at end of file diff --git a/sources.list b/sources.list new file mode 100644 index 0000000..e81c8f6 --- /dev/null +++ b/sources.list @@ -0,0 +1,13 @@ +###### Ubuntu Main Repos +deb http://pl.archive.ubuntu.com/ubuntu/ bionic main restricted universe +deb-src http://pl.archive.ubuntu.com/ubuntu/ bionic main restricted universe + +###### Ubuntu Update Repos +deb http://pl.archive.ubuntu.com/ubuntu/ bionic-security main restricted universe +deb http://pl.archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe +deb http://pl.archive.ubuntu.com/ubuntu/ bionic-proposed main restricted universe +deb http://pl.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe +deb-src http://pl.archive.ubuntu.com/ubuntu/ bionic-security main restricted universe +deb-src http://pl.archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe +deb-src http://pl.archive.ubuntu.com/ubuntu/ bionic-proposed main restricted universe +deb-src http://pl.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe From 9d28d097646a889bdfb986264d73d741a7f236c4 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Mon, 8 Jul 2019 12:59:46 +0000 Subject: [PATCH 02/11] fixing current status --- Dockerfile | 37 +++++++++++++++++++++++++++++++++---- local.conf | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+), 4 deletions(-) create mode 100644 local.conf diff --git a/Dockerfile b/Dockerfile index 2fc8cab..d930022 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,8 @@ -# docker build -t DeleteFB . && \ +# docker build -t deletefb . && \ # docker run -ti --rm \ # -e DISPLAY=$DISPLAY \ # -v /tmp/.X11-unix:/tmp/.X11-unix \ -# DeleteFB +# deletefb FROM ubuntu:bionic @@ -32,10 +32,39 @@ FROM ubuntu:bionic chown ${uid}:${gid} -R /home/${user} && \ usermod -aG sudo ${user} -# delete FB repo +# Install Chrome +RUN apt-get update && apt-get install -y \ + apt-transport-https \ + ca-certificates \ + curl \ + gnupg \ + hicolor-icon-theme \ + libcanberra-gtk* \ + libgl1-mesa-dri \ + libgl1-mesa-glx \ + libpango1.0-0 \ + libpulse0 \ + libv4l-0 \ + fonts-symbola \ + --no-install-recommends \ + && curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ + && echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list \ + && apt-get update && apt-get install -y \ + google-chrome-stable \ + --no-install-recommends && \ + rm -rf /var/lib/apt/lists/* + +COPY local.conf /etc/fonts/local.conf + + +# delete FB repo install + + RUN pip3 install --user delete-facebook-posts RUN pip3 install --user git+https://github.com/weskerfoot/DeleteFB.git RUN git clone https://github.com/weskerfoot/DeleteFB.git WORKDIR ./DeleteFB RUN pip3 install -r requirements.txt - CMD python3 -m ./deletefb/deletefb.py \ No newline at end of file + CMD python3 -m ./deletefb/deletefb.py + + USER ${user} diff --git a/local.conf b/local.conf new file mode 100644 index 0000000..f6a5f5c --- /dev/null +++ b/local.conf @@ -0,0 +1,34 @@ + + + + + +rgb + + + + +true + + + + +hintslight + + + + +true + + + + +lcddefault + + + + +false + + + From 1cccf4a2c5eb2371fcba88966c81235d726715b0 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Mon, 8 Jul 2019 15:01:18 +0000 Subject: [PATCH 03/11] updating latest changes --- Dockerfile | 11 ++++++++++- run.sh | 14 ++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100755 run.sh diff --git a/Dockerfile b/Dockerfile index d930022..077184b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,15 @@ # docker run -ti --rm \ # -e DISPLAY=$DISPLAY \ # -v /tmp/.X11-unix:/tmp/.X11-unix \ + # --cap-add=SYS_ADMIN \ + # --cap-add=NET_ADMIN \ + # --cpuset-cpus 0 \ + # --memory 4GB \ + # -v /tmp/.X11-unix:/tmp/.X11-unix \ + # -e DISPLAY=unix:0 \ + # --device /dev/snd \ + # --device /dev/dri \ + # -v /dev/shm:/dev/shm \ # deletefb @@ -67,4 +76,4 @@ COPY local.conf /etc/fonts/local.conf RUN pip3 install -r requirements.txt CMD python3 -m ./deletefb/deletefb.py - USER ${user} + USER ${user} diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..a9cc385 --- /dev/null +++ b/run.sh @@ -0,0 +1,14 @@ +docker build -t deletefb . && \ +docker run -ti --rm \ + -e DISPLAY=$DISPLAY \ + -v /tmp/.X11-unix:/tmp/.X11-unix \ + --cap-add=SYS_ADMIN \ + --cap-add=NET_ADMIN \ + --cpuset-cpus 0 \ + --memory 4GB \ + -v /tmp/.X11-unix:/tmp/.X11-unix \ + -e DISPLAY=unix:0 \ + --device /dev/snd \ + --device /dev/dri \ + -v /dev/shm:/dev/shm \ + deletefb \ No newline at end of file From 95751423be8c622001f7884cfc075fc2acd5a768 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Tue, 9 Jul 2019 12:26:04 +0000 Subject: [PATCH 04/11] working files --- Dockerfile | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 077184b..5175b3d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,15 +31,15 @@ FROM ubuntu:bionic vim # creating user - ENV user username - RUN export uid=1000 gid=1000 && \ - mkdir -p /home/${user} && \ - echo "${user}:x:${uid}:${gid}:${user},,,:/home/${user}:/bin/bash" >> /etc/passwd && \ - echo "${user}:x:${uid}:" >> /etc/group && \ - echo "${user} ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/${user} && \ - chmod 0440 /etc/sudoers.d/${user} && \ - chown ${uid}:${gid} -R /home/${user} && \ - usermod -aG sudo ${user} + # ENV user username + # RUN export uid=1000 gid=1000 && \ + # mkdir -p /home/${user} && \ + # echo "${user}:x:${uid}:${gid}:${user},,,:/home/${user}:/bin/bash" >> /etc/passwd && \ + # echo "${user}:x:${uid}:" >> /etc/group && \ + # echo "${user} ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/${user} && \ + # chmod 0440 /etc/sudoers.d/${user} && \ + # chown ${uid}:${gid} -R /home/${user} && \ + # usermod -aG sudo ${user} # Install Chrome RUN apt-get update && apt-get install -y \ @@ -74,6 +74,7 @@ COPY local.conf /etc/fonts/local.conf RUN git clone https://github.com/weskerfoot/DeleteFB.git WORKDIR ./DeleteFB RUN pip3 install -r requirements.txt - CMD python3 -m ./deletefb/deletefb.py - - USER ${user} +# RUN pip3 install selenium oathlib attrs pybloom_live + RUN pip3 install attrs pybloom_live + RUN pip3 install --user selenium + CMD python3 -m deletefb.deletefb \ No newline at end of file From 67085d198b58c25c2206ebd10f440259b00325b7 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Tue, 9 Jul 2019 15:12:43 +0000 Subject: [PATCH 05/11] updating working files --- Dockerfile | 94 ++++++++++++++++-------------------------------------- run.sh | 2 +- 2 files changed, 29 insertions(+), 67 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5175b3d..c0d6034 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,80 +1,42 @@ -# docker build -t deletefb . && \ -# docker run -ti --rm \ -# -e DISPLAY=$DISPLAY \ -# -v /tmp/.X11-unix:/tmp/.X11-unix \ - # --cap-add=SYS_ADMIN \ - # --cap-add=NET_ADMIN \ - # --cpuset-cpus 0 \ - # --memory 4GB \ - # -v /tmp/.X11-unix:/tmp/.X11-unix \ - # -e DISPLAY=unix:0 \ - # --device /dev/snd \ - # --device /dev/dri \ - # -v /dev/shm:/dev/shm \ -# deletefb - - -FROM ubuntu:bionic - -# Update and apt install - # add your own sources.list file here in order to speed up the build - ADD sources.list /etc/apt/sources.list +# to build and launch, edit ./run.sh +# with your values, then execute it +FROM debian:stable-slim RUN apt-get update && \ - apt-get install -y firefox \ + apt-get install -y \ git \ python3 \ python3-pip \ libcanberra-gtk-module \ curl \ sudo \ - vim - -# creating user - # ENV user username - # RUN export uid=1000 gid=1000 && \ - # mkdir -p /home/${user} && \ - # echo "${user}:x:${uid}:${gid}:${user},,,:/home/${user}:/bin/bash" >> /etc/passwd && \ - # echo "${user}:x:${uid}:" >> /etc/group && \ - # echo "${user} ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/${user} && \ - # chmod 0440 /etc/sudoers.d/${user} && \ - # chown ${uid}:${gid} -R /home/${user} && \ - # usermod -aG sudo ${user} - -# Install Chrome -RUN apt-get update && apt-get install -y \ - apt-transport-https \ - ca-certificates \ - curl \ - gnupg \ - hicolor-icon-theme \ - libcanberra-gtk* \ - libgl1-mesa-dri \ - libgl1-mesa-glx \ - libpango1.0-0 \ - libpulse0 \ - libv4l-0 \ - fonts-symbola \ - --no-install-recommends \ - && curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ - && echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google.list \ - && apt-get update && apt-get install -y \ - google-chrome-stable \ - --no-install-recommends && \ - rm -rf /var/lib/apt/lists/* - -COPY local.conf /etc/fonts/local.conf - + vim \ + unzip \ + chromium \ + chromium-driver + +#creating user + ENV user username + RUN export uid=1000 gid=1000 && \ + mkdir -p /home/${user} && \ + echo "${user}:x:${uid}:${gid}:${user},,,:/home/${user}:/bin/bash" >> /etc/passwd && \ + echo "${user}:x:${uid}:" >> /etc/group && \ + echo "${user} ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/${user} && \ + chmod 0440 /etc/sudoers.d/${user} && \ + chown ${uid}:${gid} -R /home/${user} && \ + usermod -aG sudo ${user} # delete FB repo install + USER ${user} + WORKDIR /home/${user} + ARG mail + ARG pass + ARG url RUN pip3 install --user delete-facebook-posts RUN pip3 install --user git+https://github.com/weskerfoot/DeleteFB.git - RUN git clone https://github.com/weskerfoot/DeleteFB.git - WORKDIR ./DeleteFB - RUN pip3 install -r requirements.txt -# RUN pip3 install selenium oathlib attrs pybloom_live - RUN pip3 install attrs pybloom_live - RUN pip3 install --user selenium - CMD python3 -m deletefb.deletefb \ No newline at end of file + RUN git clone https://github.com/weskerfoot/DeleteFB.git + RUN pip3 install -r ./DeleteFB/requirements.txt + RUN pip3 install --user selenium attrs pybloom_live + CMD python3 -m deletefb.deletefb -E ${mail} -P ${pass} -U ${url} \ No newline at end of file diff --git a/run.sh b/run.sh index a9cc385..bf48132 100755 --- a/run.sh +++ b/run.sh @@ -11,4 +11,4 @@ docker run -ti --rm \ --device /dev/snd \ --device /dev/dri \ -v /dev/shm:/dev/shm \ - deletefb \ No newline at end of file + deletefb -e mail="your@email.com" -e pass="Y0Ur*P4ss" -e url="http://facebook.com/your-username" deletefb:latest From 237aaa60c1381132ad934e7cd346096ccbb114c4 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Tue, 9 Jul 2019 15:13:03 +0000 Subject: [PATCH 06/11] cleaning trash --- local.conf | 34 ---------------------------------- sources.list | 13 ------------- 2 files changed, 47 deletions(-) delete mode 100644 local.conf delete mode 100644 sources.list diff --git a/local.conf b/local.conf deleted file mode 100644 index f6a5f5c..0000000 --- a/local.conf +++ /dev/null @@ -1,34 +0,0 @@ - - - - - -rgb - - - - -true - - - - -hintslight - - - - -true - - - - -lcddefault - - - - -false - - - diff --git a/sources.list b/sources.list deleted file mode 100644 index e81c8f6..0000000 --- a/sources.list +++ /dev/null @@ -1,13 +0,0 @@ -###### Ubuntu Main Repos -deb http://pl.archive.ubuntu.com/ubuntu/ bionic main restricted universe -deb-src http://pl.archive.ubuntu.com/ubuntu/ bionic main restricted universe - -###### Ubuntu Update Repos -deb http://pl.archive.ubuntu.com/ubuntu/ bionic-security main restricted universe -deb http://pl.archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe -deb http://pl.archive.ubuntu.com/ubuntu/ bionic-proposed main restricted universe -deb http://pl.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe -deb-src http://pl.archive.ubuntu.com/ubuntu/ bionic-security main restricted universe -deb-src http://pl.archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe -deb-src http://pl.archive.ubuntu.com/ubuntu/ bionic-proposed main restricted universe -deb-src http://pl.archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe From 08305ac8b5c34e146b509fac59cd6bff12cac513 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Thu, 11 Jul 2019 08:33:50 +0000 Subject: [PATCH 07/11] saving makefile status --- Makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..55b7eb1 --- /dev/null +++ b/Makefile @@ -0,0 +1,30 @@ +# Makefile + +NAME:= deletefb +url := https://facebook.com/$$username + +.PHONY: all build run + +all: build run + +build: + @docker build -t $(NAME) . + +run: + @read -p "Enter your Facebook email: " email; \ + + @read -p "Enter your Facebook password: " password; \ + + @read -p "Enter your Facebook username: " username; + + @docker run -ti --rm \ + -e DISPLAY=$DISPLAY \ + -v /tmp/.X11-unix:/tmp/.X11-unix \ + --cap-add=SYS_ADMIN \ + --cap-add=NET_ADMIN \ + --cpuset-cpus 0 \ + -v /tmp/.X11-unix:/tmp/.X11-unix \ + --device /dev/dri \ + -v /dev/shm:/dev/shm \ + $(NAME):latest "`which python3` -m deletefb.deletefb -e mail="$$email" -e pass=$$password -e url=$$url" + From 51454a993264b1b64beb3b71a0cd3d1bd4b9e767 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Thu, 8 Aug 2019 10:17:21 +0000 Subject: [PATCH 08/11] updating working files --- Dockerfile | 35 ++++++++++++++++++++++++----------- Makefile | 17 ++++++----------- run.sh | 16 ++-------------- 3 files changed, 32 insertions(+), 36 deletions(-) diff --git a/Dockerfile b/Dockerfile index c0d6034..a1a9a5d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,19 @@ -# to build and launch, edit ./run.sh -# with your values, then execute it +# docker run -ti --rm \ +# -e DISPLAY=$DISPLAY \ +# -v /tmp/.X11-unix:/tmp/.X11-unix \ +# --cap-add=SYS_ADMIN \ +# --cap-add=NET_ADMIN \ +# --cpuset-cpus 0 \ +# --memory 4GB \ +# -v /tmp/.X11-unix:/tmp/.X11-unix \ +# -e DISPLAY=unix:0 \ +# --device /dev/snd \ +# --device /dev/dri \ +# -v /dev/shm:/dev/shm \ +# deletefb -e mail="your@email.com" -e pass="Y0Ur*P4ss" -e url="http://facebook.com/your-username" deletefb:latest FROM debian:stable-slim + RUN apt-get update && \ apt-get install -y \ git \ @@ -15,8 +27,8 @@ FROM debian:stable-slim chromium \ chromium-driver -#creating user - ENV user username +#creating new user + ENV user deletefb RUN export uid=1000 gid=1000 && \ mkdir -p /home/${user} && \ echo "${user}:x:${uid}:${gid}:${user},,,:/home/${user}:/bin/bash" >> /etc/passwd && \ @@ -26,17 +38,18 @@ FROM debian:stable-slim chown ${uid}:${gid} -R /home/${user} && \ usermod -aG sudo ${user} -# delete FB repo install + +# deletefb install USER ${user} WORKDIR /home/${user} - - ARG mail + + ARG email ARG pass ARG url + #ARG --conversations RUN pip3 install --user delete-facebook-posts - RUN pip3 install --user git+https://github.com/weskerfoot/DeleteFB.git - RUN git clone https://github.com/weskerfoot/DeleteFB.git - RUN pip3 install -r ./DeleteFB/requirements.txt RUN pip3 install --user selenium attrs pybloom_live - CMD python3 -m deletefb.deletefb -E ${mail} -P ${pass} -U ${url} \ No newline at end of file + + ADD run.sh /tmp/run.sh + ENTRYPOINT [ "/tmp/run.sh" ] diff --git a/Makefile b/Makefile index 55b7eb1..976fdb9 100644 --- a/Makefile +++ b/Makefile @@ -11,20 +11,15 @@ build: @docker build -t $(NAME) . run: - @read -p "Enter your Facebook email: " email; \ - - @read -p "Enter your Facebook password: " password; \ - - @read -p "Enter your Facebook username: " username; - - @docker run -ti --rm \ - -e DISPLAY=$DISPLAY \ + @read -p "Enter your Facebook email: " email && read -p "Enter your Facebook password: " password && read -p "Enter your Facebook username: " username && docker run -ti --rm \ + -e DISPLAY=$$DISPLAY \ -v /tmp/.X11-unix:/tmp/.X11-unix \ --cap-add=SYS_ADMIN \ --cap-add=NET_ADMIN \ --cpuset-cpus 0 \ - -v /tmp/.X11-unix:/tmp/.X11-unix \ --device /dev/dri \ -v /dev/shm:/dev/shm \ - $(NAME):latest "`which python3` -m deletefb.deletefb -e mail="$$email" -e pass=$$password -e url=$$url" - + -e EMAIL="$$email" \ + -e PASS="$$password" \ + -e URL="https://facebook.com/$$username" \ + $(NAME):latest \ No newline at end of file diff --git a/run.sh b/run.sh index bf48132..6a6897b 100755 --- a/run.sh +++ b/run.sh @@ -1,14 +1,2 @@ -docker build -t deletefb . && \ -docker run -ti --rm \ - -e DISPLAY=$DISPLAY \ - -v /tmp/.X11-unix:/tmp/.X11-unix \ - --cap-add=SYS_ADMIN \ - --cap-add=NET_ADMIN \ - --cpuset-cpus 0 \ - --memory 4GB \ - -v /tmp/.X11-unix:/tmp/.X11-unix \ - -e DISPLAY=unix:0 \ - --device /dev/snd \ - --device /dev/dri \ - -v /dev/shm:/dev/shm \ - deletefb -e mail="your@email.com" -e pass="Y0Ur*P4ss" -e url="http://facebook.com/your-username" deletefb:latest +#!/bin/bash +/usr/bin/python3 -m deletefb.deletefb -E $EMAIL -P $PASS -U $URL \ No newline at end of file From d2ce6b5ab85dea7e0d116804b22ed0f378b0ea47 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Thu, 8 Aug 2019 10:35:42 +0000 Subject: [PATCH 09/11] updating dockerfile --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index a1a9a5d..f7c2177 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,6 @@ +# To run, just type "make", or + +# docker build -t deletefb . # docker run -ti --rm \ # -e DISPLAY=$DISPLAY \ # -v /tmp/.X11-unix:/tmp/.X11-unix \ From ee34c119750d002d6753c25105f409a136618f34 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Thu, 8 Aug 2019 10:41:34 +0000 Subject: [PATCH 10/11] fixing makefile --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 976fdb9..f342b0c 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ # Makefile NAME:= deletefb -url := https://facebook.com/$$username .PHONY: all build run From e761cc236b8550ba399c13384889b80711bb2853 Mon Sep 17 00:00:00 2001 From: Marco Matos Date: Thu, 8 Aug 2019 12:59:50 +0000 Subject: [PATCH 11/11] fixing spaces --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f342b0c..87bf189 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ build: @docker build -t $(NAME) . run: - @read -p "Enter your Facebook email: " email && read -p "Enter your Facebook password: " password && read -p "Enter your Facebook username: " username && docker run -ti --rm \ + @read -p "Enter your Facebook email: " email && read -p "Enter your Facebook password: " password && read -p "Enter your Facebook username: " username && docker run -ti --rm \ -e DISPLAY=$$DISPLAY \ -v /tmp/.X11-unix:/tmp/.X11-unix \ --cap-add=SYS_ADMIN \