Files
DiunaBI/DiunaBI.API/Dockerfile

59 lines
1.8 KiB
Docker
Raw Permalink Normal View History

2025-11-06 12:14:05 +01:00
# Stage 1: Build
2025-11-19 12:33:37 +01:00
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
2025-12-02 14:31:21 +01:00
ARG PLUGIN_PROJECT=DiunaBI.Plugins.Morska
2025-11-28 11:29:38 +01:00
WORKDIR /
2025-11-06 12:14:05 +01:00
# Copy solution and all project files for restore
COPY DiunaBI.sln ./
COPY DiunaBI.API/DiunaBI.API.csproj DiunaBI.API/
COPY DiunaBI.Domain/DiunaBI.Domain.csproj DiunaBI.Domain/
COPY DiunaBI.Application/DiunaBI.Application.csproj DiunaBI.Application/
COPY DiunaBI.Infrastructure/DiunaBI.Infrastructure.csproj DiunaBI.Infrastructure/
2025-12-02 14:31:21 +01:00
COPY ${PLUGIN_PROJECT}/${PLUGIN_PROJECT}.csproj ${PLUGIN_PROJECT}/
2025-11-06 12:14:05 +01:00
# Restore dependencies
RUN dotnet restore DiunaBI.API/DiunaBI.API.csproj
# Copy all source code
COPY . .
# Build plugin first
2025-12-02 14:31:21 +01:00
WORKDIR /${PLUGIN_PROJECT}
2025-11-06 12:14:05 +01:00
RUN dotnet build -c Release
2025-12-04 18:44:39 +01:00
# Build and publish API (skip automatic plugin copy since we handle it manually)
2025-11-28 11:29:38 +01:00
WORKDIR /DiunaBI.API
2025-12-04 18:44:39 +01:00
RUN dotnet publish -c Release -o /app/publish --no-restore -p:SkipPluginCopy=true
2025-11-06 12:14:05 +01:00
# Copy plugin DLL to publish output
RUN mkdir -p /app/publish/Plugins && \
2025-12-02 14:31:21 +01:00
cp /${PLUGIN_PROJECT}/bin/Release/net10.0/${PLUGIN_PROJECT}.dll /app/publish/Plugins/
2025-11-06 12:14:05 +01:00
# Stage 2: Runtime
2025-11-19 12:33:37 +01:00
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime
2025-11-06 12:14:05 +01:00
WORKDIR /app
# Install wget for health checks
RUN apt-get update && apt-get install -y wget && rm -rf /var/lib/apt/lists/*
# Set timezone
ENV TZ=Europe/Warsaw
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Copy published files
COPY --from=build /app/publish .
# Set environment variables (can be overridden)
ENV ASPNETCORE_ENVIRONMENT=Production
ENV ASPNETCORE_URLS=http://0.0.0.0:7142
# Expose port (default, can be remapped in docker-compose)
EXPOSE 7142
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:7142/health || exit 1
# Run the application
ENTRYPOINT ["dotnet", "DiunaBI.API.dll"]