risk-pipeline / Dockerfile
soupstick
fix missing files and business logic
f1027ec
raw
history blame contribute delete
371 Bytes
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"]