Compare commits
No commits in common. "86d3cb9937382b2e7fb8319496feb8c1655f9805" and "9fd9578dae02f7b007c6dec03410367c1c284d26" have entirely different histories.
86d3cb9937
...
9fd9578dae
@ -8,12 +8,12 @@
|
|||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<!--<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ContainerImageName>ActiveAllocator-Integration-SimmonsBank</ContainerImageName>
|
<ContainerImageName>ActiveAllocator-Integration-SimmonsBank</ContainerImageName>
|
||||||
<PublishProfile>DefaultContainer</PublishProfile>
|
<PublishProfile>DefaultContainer</PublishProfile>
|
||||||
<ContainerImageTags>1.0.0;latest</ContainerImageTags>
|
<ContainerImageTags>1.0.0;latest</ContainerImageTags>
|
||||||
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
||||||
</PropertyGroup>-->
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="AutoMapper" Version="12.0.1" />
|
<PackageReference Include="AutoMapper" Version="12.0.1" />
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
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"]
|
|
@ -333,7 +333,6 @@ public class PuppeteerService : IPuppeteerService
|
|||||||
var options = new LaunchOptions {
|
var options = new LaunchOptions {
|
||||||
Headless = _config.Headless,
|
Headless = _config.Headless,
|
||||||
IgnoreHTTPSErrors = true,
|
IgnoreHTTPSErrors = true,
|
||||||
Args = new [] { "--no-sandbox" }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
IBrowser browser = await Puppeteer.LaunchAsync(options).WaitAsync(TimeSpan.FromSeconds(_config.BrowserOperationTimeoutSeconds), cancellationToken);
|
IBrowser browser = await Puppeteer.LaunchAsync(options).WaitAsync(TimeSpan.FromSeconds(_config.BrowserOperationTimeoutSeconds), cancellationToken);
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
cd AAIntegration.SimmonsBank.API/
|
|
||||||
name="activeallocator-integration-simmonsbank"
|
|
||||||
docker build -t $name:latest -t $name:1.0.0 -f Dockerfile .
|
|
||||||
cd ../
|
|
Loading…
x
Reference in New Issue
Block a user