Skip to content

Instantly share code, notes, and snippets.

@guitarrapc
Created January 15, 2019 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guitarrapc/bb53a6115db1afb839f031d6543e616a to your computer and use it in GitHub Desktop.
Save guitarrapc/bb53a6115db1afb839f031d6543e616a to your computer and use it in GitHub Desktop.
PowerShell Selenium + Chrome Headless to detect mixed content
FROM mcr.microsoft.com/powershell:ubuntu-xenial
WORKDIR /app
RUN apt-get update \
&& apt-get install -y wget unzip
RUN apt install -y gdebi \
&& wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb \
&& gdebi -n google-chrome-stable_current_amd64.deb \
&& rm google-chrome-stable_current_amd64.deb
RUN wget https://chromedriver.storage.googleapis.com/2.45/chromedriver_linux64.zip \
&& unzip chromedriver_linux64.zip \
&& chmod +x ./chromedriver \
&& rm chromedriver_linux64.zip
RUN wget https://www.nuget.org/api/v2/package/Selenium.WebDriver/3.141.0 -O selenium.webdriver.zip \
&& unzip selenium.webdriver.zip -d webdriver \
&& cp webdriver/lib/netstandard2.0/WebDriver.dll . \
&& chmod +x ./WebDriver.dll \
&& rm -rf webdriver \
&& rm selenium.webdriver.zip
COPY Get-MixedContent.ps1 Get-MixedContent.ps1
COPY Get-SitemapUrl.ps1 Get-SitemapUrl.ps1
CMD [ "pwsh", "-File", "./Get-MixedContent.ps1"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment