fastdash / Dockerfile
dkedar7's picture
Update Dockerfile (#2)
673b2a9 verified
raw
history blame contribute delete
143 Bytes
FROM python:3.13-slim
ADD . /app
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
CMD gunicorn app:server --bind :${PORT:-7860}