trying the target plan

This commit is contained in:
Paul Schneider 2026-06-07 11:42:08 +01:00
commit 4b9bf57a51
3 changed files with 2 additions and 5 deletions

View file

@ -33,7 +33,7 @@ jobs:
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
context: . context: .
file: ./Dockerfile.prod file: ./Dockerfile
push: true push: true
tags: | tags: |
pazof/yavsc:latest pazof/yavsc:latest

View file

@ -36,10 +36,7 @@ RUN dotnet restore
COPY . . COPY . .
# 6. Compilation du serveur Web principal # 6. Compilation du serveur Web principal
RUN dotnet build src/Yavsc.Org/Yavsc.Org.csproj -c Release --no-restore -clp:ErrorsOnly RUN dotnet build . -c Release --no-restore -clp:ErrorsOnly
# 7. Génération de l'APK Android (Forçage de l'identifiant de runtime mobile -r)
RUN dotnet build src/PostIt/PostIt.Android/PostIt.Android.csproj -c Release -f net10.0-android -r android-arm64 --no-restore -clp:ErrorsOnly
# Définition du répertoire d'exécution par défaut # Définition du répertoire d'exécution par défaut
CMD ["bash"] CMD ["bash"]