FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS base ##################### #PUPPETEER RECIPE ##################### RUN apt-get update && apt-get -f install && apt-get -y install wget gnupg2 apt-utils RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - RUN echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' >> /etc/apt/sources.list RUN apt-get update \ && apt-get install -y google-chrome-stable --no-install-recommends --allow-downgrades fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf ###################### #END PUPPETEER RECIPE ###################### ENV PUPPETEER_EXECUTABLE_PATH "/usr/bin/google-chrome-stable" WORKDIR /app EXPOSE 80 EXPOSE 443 FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build WORKDIR /app # Copy everything COPY . ./ # Restore as distinct layers RUN dotnet restore # Build and publish a release RUN dotnet publish -c Release -o out FROM base AS final WORKDIR /app COPY --from=build /app/out . ENTRYPOINT ["dotnet", "AAIntegration.SimmonsBank.API.dll"]