From a694e9edf4e434326ab09be4ee9c5a76ff1bfe72 Mon Sep 17 00:00:00 2001 From: ocueye2 <157711490+ocueye2@users.noreply.github.com> Date: Fri, 22 Nov 2024 13:30:32 -0500 Subject: [PATCH] Update dockerfile --- dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 1dc76c5..93ef0df 100644 --- a/dockerfile +++ b/dockerfile @@ -6,8 +6,14 @@ RUN pip install cherrypy pillow qrcode RUN apt-get update RUN apt-get install nano -COPY . . +# clone repo +RUN apt-get install git +RUN git clone https://github.com/ocueye2/my-website.git +RUN pip install cherrypy + EXPOSE 8170 + +WORKDIR /app/heretothere CMD ["python", "start.py"]