pif / Dockerfile
pramodmisra's picture
Add user deletion + full superadmin control; fix migration DB path
73b7619
raw
history blame contribute delete
226 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p /data
ENV DATABASE_URL="sqlite:////data/app.db"
EXPOSE 7860
CMD ["python", "start.py"]