diff --git a/Dockerfile b/Dockerfile index 9e6e677..cf8687e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /home/ COPY . /home/ -RUN apt-get update && \ +RUN apt-get update -y --no-install-recommends && \ apt-get install -y --no-install-recommends python3.7 && \ apt-get install -y python3-pip && \ apt-get install --no-install-recommends -y php && \ diff --git a/docker-compose.yml b/docker-compose.yml index 875eb38..eb88cf4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,7 +13,9 @@ services: command: python3 HiddenEye.py stdin_open: true tty: true - volumes: $PWD/WebPages:/home/WebPages - networks: internet + volumes: + - "$PWD/WebPages:/home/WebPages" + networks: + - internet restart: always