Skip to content

Fix nginx

Fix nginx #2

Workflow file for this run

name: Build and push Docker image
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.6.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2.9.1
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: kinanlak/spotipack:latest
platforms: linux/arm64
cache-from: type=registry,ref=kinanlak/spotipack:buildcache
cache-to: type=registry,ref=kinanlak/spotipack:buildcache,mode=max