e1250 commited on
Commit
c71724a
·
1 Parent(s): e8c2dfb

fix: fixing docker file to install git

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -1,5 +1,8 @@
1
  FROM python:3.10-slim
2
 
 
 
 
3
  # Working dir inside the container.
4
  WORKDIR /app
5
 
 
1
  FROM python:3.10-slim
2
 
3
+ # Install git package for our ai package, then clear cache to save docker space.
4
+ RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
5
+
6
  # Working dir inside the container.
7
  WORKDIR /app
8