-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
104 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Apps / Job Policy Checker | ||
|
||
on: | ||
pull_request: | ||
branches: ["*"] | ||
paths: | ||
- apps/job-dispatcher/** | ||
- packages/db/** | ||
- .github/workflows/apps-job-dispatcher.yaml | ||
- pnpm-lock.yaml | ||
push: | ||
branches: ["main"] | ||
paths: | ||
- apps/job-dispatcher/** | ||
- packages/db/** | ||
- .github/workflows/apps-job-dispatcher.yaml | ||
- pnpm-lock.yaml | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ctrlplane/job-dispatchers | ||
tags: | | ||
type=sha,format=short,prefix= | ||
- name: Build | ||
uses: docker/build-push-action@v6 | ||
if: github.ref != 'refs/heads/main' | ||
with: | ||
push: false | ||
file: apps/job-dispatchers/Dockerfile | ||
tags: ${{ steps.meta.outputs.tags }} | ||
|
||
- name: Build and Push | ||
uses: docker/build-push-action@v6 | ||
if: github.ref == 'refs/heads/main' | ||
with: | ||
push: true | ||
file: apps/job-dispatchers/Dockerfile | ||
tags: ${{ steps.meta.outputs.tags }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
ARG NODE_VERSION=22 | ||
FROM node:${NODE_VERSION}-alpine | ||
|
||
RUN apk add --no-cache libc6-compat python3 make g++ bash nano | ||
|
||
ENV PNPM_HOME="/pnpm" | ||
ENV PATH="$PNPM_HOME:$PATH" | ||
|
||
RUN npm install -g turbo | ||
RUN corepack enable pnpm | ||
|
||
WORKDIR /app | ||
|
||
COPY .gitignore .gitignore | ||
COPY turbo.json turbo.json | ||
RUN pnpm add -g turbo | ||
|
||
COPY package.json package.json | ||
COPY pnpm-*.yaml . | ||
|
||
COPY tooling/prettier/package.json ./tooling/prettier/package.json | ||
COPY tooling/eslint/package.json ./tooling/eslint/package.json | ||
COPY tooling/typescript/package.json ./tooling/typescript/package.json | ||
|
||
COPY packages/db/package.json ./packages/db/package.json | ||
COPY packages/job-dispatch/package.json ./packages/job-dispatch/package.json | ||
|
||
COPY apps/job-dispatcher/package.json ./apps/job-dispatcher/package.json | ||
|
||
RUN pnpm install --frozen-lockfile | ||
|
||
COPY . . | ||
|
||
RUN turbo build --filter=...@ctrlplane/job-dispatcher | ||
|
||
RUN addgroup --system --gid 1001 nodejs | ||
RUN adduser --system --uid 1001 nodejs | ||
USER nodejs | ||
|
||
CMD node apps/job-dispatcher/dist/index.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters