This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
015b80e
commit 4339fcd
Showing
68 changed files
with
21,493 additions
and
7,649 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
name: Docker_build_push | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
env: | ||
REGISTRY: ghcr.io | ||
IMAGE_NAME: ${{ github.repository }} | ||
|
||
jobs: | ||
docker: | ||
name: Build and push docker image to GitHub Container Registry | ||
strategy: | ||
matrix: | ||
environment: [devnet-1] | ||
runs-on: ubuntu-latest-16-core | ||
environment: ${{ matrix.environment }} | ||
outputs: | ||
tags: ${{ steps.meta.outputs.tags }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Inject slug/short variables | ||
uses: rlespinasse/github-slug-action@v4 | ||
with: | ||
short-length: 7 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
tags: | | ||
type=semver,pattern={{version}},suffix=${{ format('-{0}', matrix.environment) }} | ||
type=semver,pattern={{major}}.{{minor}},suffix=${{ format('-{0}', matrix.environment) }} | ||
- name: Push to GitHub Container Registry | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
build-args: | | ||
VITE_SUBNET_REGISTRATOR_CONTRACT_ADDRESS=${{ vars.SUBNET_REGISTRATOR_CONTRACT_ADDRESS }} | ||
VITE_TOPOS_CORE_PROXY_CONTRACT_ADDRESS=${{ vars.TOPOS_CORE_PROXY_CONTRACT_ADDRESS }} | ||
VITE_TOPOS_SUBNET_ENDPOINT=${{ vars.TOPOS_SUBNET_ENDPOINT }} | ||
VITE_TRACING_SERVICE_NAME=${{ vars.TRACING_SERVICE_NAME_FRONTEND }} | ||
VITE_TRACING_SERVICE_VERSION=${{ github.ref_name }} | ||
VITE_ELASTIC_APM_ENDPOINT=${{ vars.ELASTIC_APM_ENDPOINT }} | ||
VITE_RECAPTCHA_SITE_KEY=${{ vars.RECAPTCHA_SITE_KEY }} | ||
cache-from: | | ||
type=registry,ref=${{ env.REGISTRY }}/${{ github.repository }}:build-cache-${{ env.GITHUB_REF_SLUG_URL }}-${{ github.workflow }} | ||
type=registry,ref=${{ env.REGISTRY }}/${{ github.repository }}:build-cache-main-${{ github.workflow }} | ||
cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ github.repository }}:build-cache-${{ env.GITHUB_REF_SLUG_URL }}-${{ github.workflow }},mode=max |
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,23 @@ | ||
FROM node:lts-alpine | ||
|
||
ARG VITE_SUBNET_REGISTRATOR_CONTRACT_ADDRESS | ||
ARG VITE_TOPOS_CORE_PROXY_CONTRACT_ADDRESS | ||
ARG VITE_TOPOS_SUBNET_ENDPOINT | ||
ARG VITE_TRACING_SERVICE_NAME | ||
ARG VITE_TRACING_SERVICE_VERSION | ||
ARG VITE_ELASTIC_APM_ENDPOINT | ||
ARG VITE_RECAPTCHA_SITE_KEY | ||
|
||
WORKDIR /usr/src/app | ||
|
||
COPY package*.json ./ | ||
COPY packages/frontend/package.json ./packages/frontend/package.json | ||
COPY packages/backend/package.json ./packages/backend/package.json | ||
|
||
RUN npm ci | ||
|
||
COPY . ./ | ||
|
||
RUN npm run frontend:build | ||
|
||
CMD npm run backend:build && npm run backend:start:prod |
Oops, something went wrong.