Skip to content

Commit 7826d0a

Browse files
authored
Updated dockerfile
1 parent c1a2855 commit 7826d0a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ FROM python:3.12-slim
55
WORKDIR /app
66

77
# Copy the current directory contents into the container at /app
8-
COPY . /app
98

109
RUN apt-get update && \
1110
apt-get install -y --no-install-recommends git openssh-client && \
1211
rm -rf /var/lib/apt/lists/*
1312

13+
COPY . /app
14+
1415
RUN --mount=type=ssh git submodule update --init --recursive
1516

1617
# Install any needed packages specified in requirements.txt

0 commit comments

Comments
 (0)