commit
d0c77c71bb
|
@ -1,12 +1,19 @@
|
||||||
name: Build and push to repository
|
name: Build and push to registry
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "main" ]
|
branches: [ "main", "dev" ]
|
||||||
|
tags: [ "v*.*.*" ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ "main", "dev" ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
packages: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-push:
|
build-and-push:
|
||||||
name: Build Docker image and push to repository
|
name: Build Docker image and push to registry
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -17,18 +24,47 @@ jobs:
|
||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v2
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: Login to repository
|
- name: Login to private registry
|
||||||
uses: docker/login-action@v2
|
uses: docker/login-action@v2
|
||||||
with:
|
with:
|
||||||
registry: ${{ secrets.REGISTRY_URL }}
|
registry: ${{ secrets.REGISTRY_URL }}
|
||||||
username: ${{ secrets.REGISTRY_USERNAME }}
|
username: ${{ secrets.REGISTRY_USERNAME }}
|
||||||
password: ${{ secrets.REGISTRY_PASSWORD }}
|
password: ${{ secrets.REGISTRY_PASSWORD }}
|
||||||
|
|
||||||
|
- name: Login to GitHub's container registry
|
||||||
|
if: github.event_name != 'pull_request'
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.repository_owner }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Generate image metadata
|
||||||
|
id: spoticord # used in next step
|
||||||
|
uses: docker/metadata-action@v5
|
||||||
|
with:
|
||||||
|
# list of Docker images to use as base name for tags
|
||||||
|
images: |
|
||||||
|
ghcr.io/spoticord/spoticord
|
||||||
|
${{ secrets.REGISTRY_URL }}/spoticord/spoticord
|
||||||
|
# Docker tags based on the following events/attributes
|
||||||
|
tags: |
|
||||||
|
type=raw,value=latest,enable={{is_default_branch}}
|
||||||
|
type=ref,event=branch
|
||||||
|
type=ref,event=pr
|
||||||
|
type=semver,pattern={{version}}
|
||||||
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
|
type=semver,pattern={{major}}
|
||||||
|
type=sha
|
||||||
|
|
||||||
- name: Build image and push to registry
|
- name: Build image and push to registry
|
||||||
uses: docker/build-push-action@v2
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
platforms: linux/amd64,linux/arm64
|
||||||
tags: |
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
${{ secrets.REGISTRY_URL }}/spoticord/spoticord:latest
|
tags: ${{ steps.spoticord.outputs.tags }}
|
||||||
push: ${{ github.ref == 'refs/heads/main' }}
|
labels: ${{ steps.spoticord.outputs.labels }}
|
||||||
|
# Some basic caching of the layers...
|
||||||
|
cache-from: ghcr.io/spoticord/spoticord:latest-cache
|
||||||
|
cache-to: ghcr.io/spoticord/spoticord:latest-cache
|
||||||
|
|
37
Dockerfile
37
Dockerfile
|
@ -1,25 +1,44 @@
|
||||||
# Builder
|
# Builder
|
||||||
FROM rust:1.72.1-buster as builder
|
FROM --platform=linux/amd64 rust:1.72.1-buster as builder
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Add extra build dependencies here
|
# Add extra build dependencies here
|
||||||
RUN apt-get update && apt-get install -y cmake
|
RUN apt-get update && apt-get install -yqq \
|
||||||
|
cmake gcc-aarch64-linux-gnu binutils-aarch64-linux-gnu
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Remove `--features stats` if you want to deploy without stats collection
|
RUN rustup target add x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu
|
||||||
RUN cargo install --path . --features stats
|
|
||||||
|
# Remove `--features=stats` if you want to deploy without stats collection
|
||||||
|
RUN cargo build --features=stats --release \
|
||||||
|
--target=x86_64-unknown-linux-gnu --target=aarch64-unknown-linux-gnu
|
||||||
|
|
||||||
# Runtime
|
# Runtime
|
||||||
FROM debian:buster-slim
|
FROM debian:buster-slim
|
||||||
|
|
||||||
WORKDIR /app
|
ARG TARGETPLATFORM
|
||||||
|
ENV TARGETPLATFORM=$TARGETPLATFORM
|
||||||
|
|
||||||
# Add extra runtime dependencies here
|
# Add extra runtime dependencies here
|
||||||
RUN apt-get update && apt-get install -y openssl ca-certificates && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -yqq --no-install-recommends \
|
||||||
|
openssl ca-certificates && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Copy spoticord binary from builder
|
# Copy spoticord binaries from builder to /tmp
|
||||||
COPY --from=builder /usr/local/cargo/bin/spoticord ./spoticord
|
COPY --from=builder \
|
||||||
|
/app/target/x86_64-unknown-linux-gnu/release/spoticord /tmp/x86_64
|
||||||
|
COPY --from=builder \
|
||||||
|
/app/target/aarch64-unknown-linux-gnu/release/spoticord /tmp/aarch64
|
||||||
|
|
||||||
CMD ["./spoticord"]
|
# Copy appropiate binary for target arch from /tmp
|
||||||
|
RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
|
||||||
|
cp /tmp/x86_64 /usr/local/bin/spoticord; \
|
||||||
|
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
|
||||||
|
cp /tmp/aarch64 /usr/local/bin/spoticord; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Delete unused binaries
|
||||||
|
RUN rm -rvf /tmp/x86_64 /tmp/aarch64
|
||||||
|
|
||||||
|
ENTRYPOINT [ "/usr/local/bin/spoticord" ]
|
||||||
|
|
Loading…
Reference in New Issue