fastdash / Dockerfile
dkedar7's picture
Update Dockerfile
e78cb09 verified
raw
history blame
219 Bytes
FROM python:3.13-slim
ADD . /app
WORKDIR /app
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir -r requirements.txt
CMD gunicorn app:server --bind :${PORT:-7860}