From 39a92e1766250f83a709bb4a9589ef9e1e732bbd Mon Sep 17 00:00:00 2001 From: Hyperling Date: Sat, 29 Oct 2022 11:47:35 -0500 Subject: [PATCH] Add sudo as a dependency. --- Config/Hyperling.com/Dockerfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Config/Hyperling.com/Dockerfile b/Config/Hyperling.com/Dockerfile index 3fc99fc..5c86335 100644 --- a/Config/Hyperling.com/Dockerfile +++ b/Config/Hyperling.com/Dockerfile @@ -3,8 +3,11 @@ FROM node -RUN git clone https://github.com/Hyperling/www www - +# Dependencies RUN apt update && apt install sudo +# Install website +RUN git clone https://github.com/Hyperling/www www + +# Run website RUN www/run.sh