Update CI workflow to target ARM64 platform and clean up Dockerfile

This commit is contained in:
Jose Henrique 2025-02-16 10:30:59 -03:00
parent a044faa163
commit 77f4ada5f1
2 changed files with 1 additions and 2 deletions

View File

@ -32,7 +32,7 @@ jobs:
file: ./Dockerfile
push: true
tags: git.ivanch.me/ivanch/pet-companion/pet-companion-api:latest
platforms: linux/amd64, linux/arm64
platforms: linux/arm64
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

View File

@ -4,7 +4,6 @@ WORKDIR /app
EXPOSE 8080
EXPOSE 8081
# This stage is used to build the service project
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
ARG BUILD_CONFIGURATION=Release