mirror of
https://github.com/sstent/minihass.git
synced 2025-12-06 03:21:36 +00:00
37 lines
778 B
Plaintext
37 lines
778 B
Plaintext
# Dockerfile
|
|
FROM python:3.11-slim
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Install system dependencies
|
|
RUN apt-get update && apt-get install -y \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy requirements first for better caching
|
|
COPY requirements.txt .
|
|
|
|
# Install Python dependencies
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy application files
|
|
COPY . .
|
|
|
|
# Create templates directory and copy template
|
|
RUN mkdir -p templates
|
|
|
|
# Expose port
|
|
EXPOSE 5000
|
|
|
|
# Create non-root user for security
|
|
RUN useradd --create-home --shell /bin/bash app \
|
|
&& chown -R app:app /app
|
|
USER app
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
|
|
CMD curl -f http://localhost:5000/ || exit 1
|
|
|
|
# Run the application
|
|
CMD ["python", "app.py"]
|