aicdn / Dockerfile
i0110's picture
Update Dockerfile
576f616 verified
raw
history blame contribute delete
193 Bytes
FROM python:3.9-slim-buster
WORKDIR /app
RUN apt-get update && apt-get install -y git
RUN pip install --no-cache-dir Flask requests gitpython
COPY . .
EXPOSE 5000
CMD ["python", "app.py"]