Skip to content

Update to Base image (elixir:1.15.7-otp26.1.2-rust1.74.0), Node.js (20.10.0), NPM (10.2.4), and Phoenix (1.7.10) #4

Update to Base image (elixir:1.15.7-otp26.1.2-rust1.74.0), Node.js (20.10.0), NPM (10.2.4), and Phoenix (1.7.10)

Update to Base image (elixir:1.15.7-otp26.1.2-rust1.74.0), Node.js (20.10.0), NPM (10.2.4), and Phoenix (1.7.10) #4

Workflow file for this run

name: Docker Image
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
driver-opts: |
network=host
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Login to Quay.io
uses: docker/login-action@v2
with:
registry: quay.io
username: fortawesome+robot
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v4
with:
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: quay.io/fortawesome/phoenix-app:${{ github.event.release.tag_name }}