ci: experimenting with Composite.Dockerfile

This commit is contained in:
2024-03-07 23:01:51 +01:00
parent ebe70f9446
commit ffa0c24fd7
2 changed files with 39 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
ARG FE_TAG=latest
ARG BE_TAG=latest
FROM ghcr.io/morbalint/kemkas-fe:${FE_TAG} as frontend
FROM ghcr.io/morbalint/kemkas-be:${BE_TAG} as backend
FROM base AS final
COPY --from=backend /app .
COPY --from=frontend /usr/share/nginx/html ./wwwroot
ENTRYPOINT ["dotnet", "Kemkas.Web.dll"]