37 lines
1.3 KiB
Docker
37 lines
1.3 KiB
Docker
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
|
|
WORKDIR /src
|
|
|
|
COPY VigilCareClinical.sln ./
|
|
COPY VigilCare.ClinicalContracts/VigilCare.ClinicalContracts.csproj VigilCare.ClinicalContracts/
|
|
COPY VigilCare.WardGateway/VigilCare.WardGateway.csproj VigilCare.WardGateway/
|
|
RUN dotnet restore VigilCare.WardGateway/VigilCare.WardGateway.csproj
|
|
|
|
COPY VigilCare.ClinicalContracts/ VigilCare.ClinicalContracts/
|
|
COPY VigilCare.WardGateway/ VigilCare.WardGateway/
|
|
RUN dotnet publish VigilCare.WardGateway/VigilCare.WardGateway.csproj \
|
|
-c Release -o /app/publish --no-restore
|
|
|
|
# Scrub development secrets (Step 4) — production supplies Jwt / ApiKey via env.
|
|
RUN sed -i \
|
|
-e 's/"SigningKey": "[^"]*"/"SigningKey": ""/' \
|
|
-e 's/"Gateway": "dev-[^"]*"/"Gateway": ""/' \
|
|
/app/publish/appsettings.json
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY --from=build /app/publish .
|
|
RUN chown -R app:app /app
|
|
USER app
|
|
|
|
ENV ASPNETCORE_URLS=http://+:8080
|
|
EXPOSE 8080
|
|
|
|
HEALTHCHECK --interval=30s --timeout=5s --start-period=40s --retries=3 \
|
|
CMD curl -fsS http://localhost:8080/health/live || exit 1
|
|
|
|
ENTRYPOINT ["dotnet", "VigilCare.WardGateway.dll"] |