Nrighton233j
B24 messenger backend — https://huggingface.co/spaces/Brighton233j/Messenger_back_database
24b8a5d
Raw
History Blame Contribute Delete
201 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV DB_PATH=/data/b24.db
ENV PORT=7860
EXPOSE 7860
CMD ["python", "app.py"]