Skip to content

Commit 2e6f3ff

Browse files
committed
chore: try installing git into image
1 parent ce09c72 commit 2e6f3ff

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

emulator/DockerFile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ COPY . .
88
# check that correct files are copied over
99
RUN ls
1010

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+
1115
# install emulator
1216
RUN pip install --no-cache-dir -e .
1317

0 commit comments

Comments
 (0)