From 1cd1e5218c8bee2fa7e7b85874831e5d297970f0 Mon Sep 17 00:00:00 2001 From: Andrew Metzger Date: Sun, 10 Dec 2023 16:22:36 -0500 Subject: [PATCH] Expickitly mkdir the clone destination? --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 576c96a..7e9cbca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ # Use the official Python image as the base image FROM python:3.12 - -# Clone the GitHub repository -RUN git clone https://github.com/andrewjmetzger/beetseeker.git - # Set the working directory in the container +RUN mkdir -p "/beetseeker" WORKDIR ["/beetseeker"] +# Clone the GitHub repository +RUN git clone https://github.com/andrewjmetzger/beetseeker.git "/beetseeker" + # Install project dependencies RUN pip install --no-cache-dir -r requirements.txt