Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#1966 Adding Github Action for publishing multi-arch docker images #2300

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions .github/workflows/dockerhub-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: Build & Publish Docker image

on:
push:
branches:
- master
release:
types: [published]

env:
IS_RELEASE: ${{github.event_name == 'release'}}
DOCKER_BUILD_ARGS: |
BUILD_TYPE=production
YARN_NETWORK_TIMEOUT=480000
DOCKER_BUILD_PLATFORMS: |
linux/amd64
linux/arm64

jobs:
docker-publish:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Compute release version tags
if: env.IS_RELEASE == 'true'
run: |
echo "TAG_PRIMARY_VERSION=$(release='${{github.event.release.tag_name}}' && echo ${release:1:1})" >> $GITHUB_ENV
echo "TAG_FULL_VERSION=$(release='${{github.event.release.tag_name}}' && echo ${release:1})" >> $GITHUB_ENV
-
name: Build and Push release tags
if: env.IS_RELEASE == 'true'
uses: docker/build-push-action@v4
with:
push: true
tags: |
${{format('{0}/prism:{1}', secrets.DOCKERHUB_USERNAME, env.TAG_FULL_VERSION)}}
${{format('{0}/prism:{1}', secrets.DOCKERHUB_USERNAME, env.TAG_PRIMARY_VERSION)}}
${{format('{0}/prism:{1}', secrets.DOCKERHUB_USERNAME, 'latest')}}
platforms: ${{env.DOCKER_BUILD_PLATFORMS}}
build-args: ${{env.DOCKER_BUILD_ARGS}}
-
name: Build and Push master Tag
if: env.IS_RELEASE != 'true'
uses: docker/build-push-action@v4
with:
push: true
tags: |
${{format('{0}/prism:master', secrets.DOCKERHUB_USERNAME)}}
platforms: ${{env.DOCKER_BUILD_PLATFORMS}}
build-args: ${{env.DOCKER_BUILD_ARGS}}
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
FROM node:16 as compiler

ARG YARN_NETWORK_TIMEOUT=30000

WORKDIR /usr/src/prism

COPY package.json yarn.lock /usr/src/prism/
COPY packages/ /usr/src/prism/packages/

RUN yarn && yarn build
RUN yarn --network-timeout $YARN_NETWORK_TIMEOUT && yarn build

###############################################################
FROM node:16 as dependencies

ARG YARN_NETWORK_TIMEOUT=30000

WORKDIR /usr/src/prism/

COPY package.json /usr/src/prism/
Expand All @@ -28,7 +32,7 @@ COPY packages/cli/package.json /usr/src/prism/packages/cli/
RUN mkdir -p /usr/src/prism/packages/cli/node_modules

ENV NODE_ENV production
RUN yarn --production
RUN yarn --network-timeout $YARN_NETWORK_TIMEOUT --production

RUN if [ $(uname -m) != "aarch64" ]; then curl -sfL https://gobinaries.com/tj/node-prune | bash; fi
RUN if [ $(uname -m) != "aarch64" ]; then node-prune; fi
Expand Down