We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1a2855 commit 7826d0aCopy full SHA for 7826d0a
Dockerfile
@@ -5,12 +5,13 @@ FROM python:3.12-slim
5
WORKDIR /app
6
7
# Copy the current directory contents into the container at /app
8
-COPY . /app
9
10
RUN apt-get update && \
11
apt-get install -y --no-install-recommends git openssh-client && \
12
rm -rf /var/lib/apt/lists/*
13
+COPY . /app
14
+
15
RUN --mount=type=ssh git submodule update --init --recursive
16
17
# Install any needed packages specified in requirements.txt
0 commit comments