dkedar7 commited on
Commit
e78cb09
·
verified ·
1 Parent(s): 7d0903f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -1,5 +1,6 @@
1
  FROM python:3.13-slim
2
  ADD . /app
3
  WORKDIR /app
 
4
  RUN pip install --no-cache-dir -r requirements.txt
5
  CMD gunicorn app:server --bind :${PORT:-7860}
 
1
  FROM python:3.13-slim
2
  ADD . /app
3
  WORKDIR /app
4
+ RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
5
  RUN pip install --no-cache-dir -r requirements.txt
6
  CMD gunicorn app:server --bind :${PORT:-7860}