Spaces:
Sleeping
Sleeping
FROM python:3.10-slim | |
WORKDIR /app | |
COPY requirements.txt . | |
RUN pip install --no-cache-dir -r requirements.txt | |
COPY . . | |
# Create necessary directories | |
RUN mkdir -p state business | |
# Copy or create necessary files | |
RUN if [ ! -f "state/health.json" ] && [ -f "state.json" ]; then \ | |
cp state.json state/health.json; \ | |
fi | |
EXPOSE 7860 | |
CMD ["python", "app.py"] |