mirror of
https://github.com/sstent/minihass.git
synced 2025-12-06 03:21:36 +00:00
sync
This commit is contained in:
26
.github/workflows/container-build.yml
vendored
26
.github/workflows/container-build.yml
vendored
@@ -7,13 +7,16 @@ on:
|
|||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- 'app.py'
|
- 'app.py'
|
||||||
- 'Dockerfile'
|
- 'dockerfile'
|
||||||
- 'requirements.txt'
|
- 'requirements.txt'
|
||||||
- 'docker-compose.yml'
|
- 'docker-compose.yml'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push:
|
build-and-push:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
arch: [amd64, arm64]
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
packages: write
|
packages: write
|
||||||
@@ -32,30 +35,15 @@ jobs:
|
|||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Create multi-arch Dockerfile
|
|
||||||
run: |
|
|
||||||
cat > Dockerfile <<EOF
|
|
||||||
FROM --platform=\$BUILDPLATFORM python:3.11-slim as builder
|
|
||||||
|
|
||||||
WORKDIR /app
|
|
||||||
COPY requirements.txt .
|
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
|
||||||
|
|
||||||
FROM python:3.11-slim
|
|
||||||
WORKDIR /app
|
|
||||||
COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
|
|
||||||
COPY --from=builder /usr/local/bin /usr/local/bin
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
CMD ["python", "app.py"]
|
|
||||||
EOF
|
|
||||||
|
|
||||||
- name: Build and push multi-arch Docker image
|
- name: Build and push multi-arch Docker image
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
push: true
|
push: true
|
||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/${{ matrix.arch }}
|
||||||
|
build-args: |
|
||||||
|
TARGETARCH=${{ matrix.arch }}
|
||||||
tags: |
|
tags: |
|
||||||
ghcr.io/${{ github.repository }}:latest
|
ghcr.io/${{ github.repository }}:latest
|
||||||
ghcr.io/${{ github.repository }}:${{ github.sha }}
|
ghcr.io/${{ github.repository }}:${{ github.sha }}
|
||||||
|
|||||||
35
dockerfile
35
dockerfile
@@ -1,36 +1,15 @@
|
|||||||
# Dockerfile
|
# Stage 1: Builder for all architectures
|
||||||
FROM python:3.11-slim
|
FROM --platform=$BUILDPLATFORM python:3.11-slim as builder
|
||||||
|
|
||||||
# Set working directory
|
|
||||||
WORKDIR /app
|
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 .
|
COPY requirements.txt .
|
||||||
|
|
||||||
# Install Python dependencies
|
|
||||||
RUN pip install --no-cache-dir -r requirements.txt
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
# Copy application files
|
# Stage 2: Final image using architecture-specific Python
|
||||||
|
FROM --platform=$TARGETPLATFORM python:3.11-slim
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages
|
||||||
COPY . .
|
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"]
|
CMD ["python", "app.py"]
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ job "minihass" {
|
|||||||
config {
|
config {
|
||||||
image = "ghcr.io/sstent/MiniHASS:latest"
|
image = "ghcr.io/sstent/MiniHASS:latest"
|
||||||
ports = ["http"]
|
ports = ["http"]
|
||||||
|
platform = "linux/${attr.cpu.arch}"
|
||||||
}
|
}
|
||||||
|
|
||||||
env {
|
env {
|
||||||
|
|||||||
Reference in New Issue
Block a user