chore: Just use pre-built doplarr.jar in the docker build

This commit is contained in:
Kiran Shila
2025-12-13 13:27:25 -08:00
parent 29223026e1
commit 97c47c3815
2 changed files with 8 additions and 26 deletions

View File

@@ -1,11 +1,8 @@
name: Main name: Main
on: push on: push
env: env:
REGISTRY: ghcr.io REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }} IMAGE_NAME: ${{ github.repository }}
jobs: jobs:
build-and-publish: build-and-publish:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -15,24 +12,20 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v6 uses: actions/checkout@v6
- name: Prepare java - name: Prepare java
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
distribution: "adopt" distribution: "adopt"
java-version: "22" java-version: "22"
- name: Install clojure tools - name: Install clojure tools
uses: DeLaGuardo/setup-clojure@13.4 uses: DeLaGuardo/setup-clojure@13.4
with: with:
cli: latest cli: latest
- name: Build bot and copy out jar for docker - name: Build bot and copy out jar for docker
shell: bash shell: bash
run: | run: |
clojure -T:build uber clojure -T:build uber
cp target/doplarr.jar docker cp target/doplarr.jar docker
- name: Release tagged version - name: Release tagged version
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
@@ -40,24 +33,27 @@ jobs:
files: | files: |
target/doplarr.jar target/doplarr.jar
config.edn config.edn
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry - name: Log in to the Container registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ${{ env.REGISTRY }} registry: ${{ env.REGISTRY }}
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker - name: Extract metadata (tags, labels) for Docker
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Build and push Docker image - name: Build and push Docker image
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
context: docker context: .
file: docker/Dockerfile
platforms: linux/amd64,linux/arm64
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}

View File

@@ -1,17 +1,3 @@
FROM clojure:tools-deps AS builder
WORKDIR /src
# Copy dependency files first for better caching
COPY deps.edn .
COPY build ./build
# Copy source code
COPY src ./src
# Build uberjar
RUN clj -T:build uber
FROM eclipse-temurin:22_36-jre-alpine AS runtime FROM eclipse-temurin:22_36-jre-alpine AS runtime
WORKDIR /app WORKDIR /app
@@ -21,7 +7,7 @@ RUN apk add --no-cache \
tini \ tini \
tzdata tzdata
COPY --from=builder /src/target/doplarr.jar . COPY target/doplarr.jar .
ENTRYPOINT ["/sbin/tini", "--"] ENTRYPOINT ["/sbin/tini", "--"]
CMD ["java", "-jar", "/app/doplarr.jar"] CMD ["java", "-jar", "/app/doplarr.jar"]