We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce09c72 commit 2e6f3ffCopy full SHA for 2e6f3ff
1 file changed
emulator/DockerFile
@@ -8,6 +8,10 @@ COPY . .
8
# check that correct files are copied over
9
RUN ls
10
11
+# Update the package lists and install Git
12
+# The commands are combined to reduce the final image size
13
+RUN apt-get update && apt-get install -y --no-install-recommends git && apt-get purge -y --auto-remove && rm -rf /var/lib/apt/lists/*
14
+
15
# install emulator
16
RUN pip install --no-cache-dir -e .
17
0 commit comments