Spaces:
Paused
Paused
File size: 910 Bytes
8ef2178 c055bb1 8ef2178 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | # IronGuard - AI Foundry Temperature Monitoring
# Hugging Face Spaces Docker Deployment
FROM python:3.11-slim
# Install system dependencies (Must be done as ROOT)
RUN apt-get update && apt-get install -y \
gcc \
g++ \
libgomp1 \
&& rm -rf /var/lib/apt/lists/*
# Create non-root user (HF requirement)
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
# Copy requirements first for better caching
COPY --chown=user ./requirements.txt requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt
# Copy application files
COPY --chown=user . /app
# Create necessary directories
RUN mkdir -p logs models
# Expose port 7860 (Hugging Face default)
EXPOSE 7860
# Set environment variables
ENV FLASK_APP=app.py
ENV FLASK_ENV=production
ENV PORT=7860
# Run the application
CMD ["python", "app.py"]
|