diff --git a/Dockerfile b/Dockerfile index 7c4e752..258318d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,12 +5,13 @@ FROM python:3.12-slim WORKDIR /app # Copy the current directory contents into the container at /app -COPY . /app RUN apt-get update && \ apt-get install -y --no-install-recommends git openssh-client && \ rm -rf /var/lib/apt/lists/* +COPY . /app + RUN --mount=type=ssh git submodule update --init --recursive # Install any needed packages specified in requirements.txt