docker build . <<< Ok

This commit is contained in:
Paul Schneider 2026-06-07 11:11:15 +01:00
commit 04a60f104e

View file

@ -36,7 +36,10 @@ RUN dotnet restore
COPY . . COPY . .
# 6. Compilation du serveur Web principal # 6. Compilation du serveur Web principal
RUN dotnet build -c Release --no-restore -clp:ErrorsOnly RUN dotnet build src/Yavsc.Org/Yavsc.Org.csproj -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"]