hrms-api-exam/Dockerfile

36 lines
1.4 KiB
Text
Raw Normal View History

2023-03-23 12:31:21 +07:00
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
2023-05-03 16:11:28 +07:00
COPY Components ./Components
COPY nuget.config .
2023-03-29 20:44:39 +07:00
COPY ["BMA.EHR.Recurit.Exam.Service.csproj", "."]
RUN dotnet restore "./BMA.EHR.Recurit.Exam.Service.csproj"
2023-03-23 12:31:21 +07:00
COPY . .
WORKDIR "/src/."
2023-03-29 20:44:39 +07:00
RUN dotnet build "BMA.EHR.Recurit.Exam.Service.csproj" -c Release -o /app/build
2023-03-23 12:31:21 +07:00
FROM build AS publish
2023-03-29 20:44:39 +07:00
RUN dotnet publish "BMA.EHR.Recurit.Exam.Service.csproj" -c Release -o /app/publish /p:UseAppHost=false
2023-03-23 12:31:21 +07:00
FROM base AS final
2023-05-03 16:11:28 +07:00
RUN apt-get update && apt-get -y install fontconfig && apt-get install -y --allow-unauthenticated libgdiplus libc6-dev
COPY ./Fonts/THSarabunIT.ttf /usr/share/fonts/truetype/
COPY ./Fonts/THSarabunITBold.ttf /usr/share/fonts/truetype/
COPY ./Fonts/THSarabunITItalic.ttf /usr/share/fonts/truetype/
COPY ./Fonts/THSarabunITBoldItalic.ttf /usr/share/fonts/truetype/
COPY ./Fonts/THSarabunNew.ttf /usr/share/fonts/truetype/
COPY ./Fonts/THSarabunNewBold.ttf /usr/share/fonts/truetype/
COPY ./Fonts/THSarabunNewItalic.ttf /usr/share/fonts/truetype/
COPY ./Fonts/THSarabunNewBoldItalic.ttf /usr/share/fonts/truetype/
RUN fc-cache -f -v
2023-03-23 12:31:21 +07:00
WORKDIR /app
COPY --from=publish /app/publish .
2023-03-29 20:44:39 +07:00
ENTRYPOINT ["dotnet", "BMA.EHR.Recurit.Exam.Service.dll"]