-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: build and publish images (#124)
- Loading branch information
1 parent
1b92a02
commit 634b626
Showing
11 changed files
with
574 additions
and
492 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
39 changes: 24 additions & 15 deletions
39
.github/workflows/data-dev.yaml → .github/workflows/images.yaml
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 |
---|---|---|
@@ -1,49 +1,58 @@ | ||
name: Publish data-dev Docker image | ||
name: Publish images | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: pi-base/data-dev | ||
tags: | ||
- 'v*' | ||
|
||
jobs: | ||
build-and-push-image: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
image: | ||
- compile | ||
- data-dev | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: pi-base/${{ matrix.image }} | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Lint Dockerfile | ||
- name: Lint Dockerfiles | ||
uses: hadolint/[email protected] | ||
with: | ||
dockerfile: images/data-dev/Dockerfile | ||
dockerfile: images/${{ matrix.image }}/Dockerfile | ||
|
||
- name: Log in to the Container registry | ||
- name: Log in to the container registry | ||
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
- name: Extract metadata | ||
id: meta | ||
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
images: ${{ env.REGISTRY }}/pi-base/${{ matrix.image }} | ||
tags: | | ||
type=semver,pattern={{version}} | ||
type=sha | ||
- name: Build and push Docker image | ||
- name: Build and push | ||
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 | ||
with: | ||
context: . | ||
file: images/data-dev/Dockerfile | ||
file: images/${{ matrix.image }}/Dockerfile | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
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,27 @@ | ||
# See https://pnpm.io/docker | ||
FROM node:18-slim AS base | ||
|
||
ENV PNPM_HOME="/pnpm" | ||
ENV PATH="$PNPM_HOME:$PATH" | ||
|
||
RUN corepack enable | ||
|
||
VOLUME /data | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
|
||
FROM base AS prod-deps | ||
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-lockfile | ||
|
||
FROM base AS build | ||
RUN --mount=type=cache,id=pnpm,target=/pnpm/store \ | ||
pnpm install --frozen-lockfile && \ | ||
pnpm run --filter core build && \ | ||
pnpm run --filter compile build && \ | ||
pnpm deploy --filter compile --prod /prod/compile | ||
|
||
FROM base | ||
COPY --from=build /prod/compile /app | ||
|
||
ENTRYPOINT ["node", "/app/dist/esm/main.js"] |
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,44 +1,39 @@ | ||
/** | ||
* Entry point for running as a Github action, with the local workspace | ||
* containing the data repository. Set GITHUB_WORKSPACE to use a different | ||
* data repository. | ||
*/ | ||
import * as core from '@actions/core' | ||
import * as fs from 'fs' | ||
import * as process from 'process' | ||
import { bundle as B } from '@pi-base/core' | ||
|
||
import load from './load.js' | ||
|
||
async function run(): Promise<void> { | ||
const repo: string = process.env.GITHUB_WORKSPACE || '.' | ||
const outpath: string = core.getInput('out') | ||
|
||
core.debug(`Compiling repo=${repo} to out=${outpath}`) | ||
async function run(repo = '.', out = 'bundle.json'): Promise<void> { | ||
log(`Compiling repo=${repo} to out=${out}`, 'debug') | ||
|
||
const { bundle, errors } = await load(repo) | ||
|
||
if (errors) { | ||
errors.forEach((messages, path) => { | ||
messages.forEach(message => { | ||
error(path, message) | ||
log(`file=${path}::${message}`, 'error') | ||
}) | ||
}) | ||
} | ||
|
||
if (errors || !bundle) { | ||
core.setFailed('Compilation finished with errors') | ||
return | ||
log('Compilation finished with errors', 'error') | ||
process.exit(1) | ||
} | ||
|
||
fs.writeFileSync(outpath, JSON.stringify(B.serialize(bundle))) | ||
fs.writeFileSync(`${repo}/${out}`, JSON.stringify(B.serialize(bundle))) | ||
} | ||
|
||
type Level = 'debug' | 'info' | 'error' | ||
|
||
function log(message: string, level: Level = 'info') { | ||
console.log(`::${level} ${message}`) | ||
} | ||
|
||
function error(file: string, message: string) { | ||
console.log(`::error file=${file}::${message}`) | ||
function fail(message: string) { | ||
log(message, 'error') | ||
process.exit(1) | ||
} | ||
|
||
run().catch(err => { | ||
core.setFailed(err.message) | ||
core.error(err.message) | ||
}) | ||
run(...process.argv.slice(2)).catch(err => fail(err.message)) |
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 @@ | ||
*.json |
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
Oops, something went wrong.