Spaces:
Sleeping
Sleeping
File size: 371 Bytes
6589a25 f1027ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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"] |