Skip to content

Commit

Permalink
Added httpd
Browse files Browse the repository at this point in the history
  • Loading branch information
sixeyed committed Nov 28, 2016
1 parent 7ad98a8 commit 8653ed0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions httpd/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# escape=`
FROM microsoft/windowsservercore
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"]

ENV HTTPD_VERSION 2.4.23
WORKDIR c:/setup

# VS 2015 C++ redist
RUN iwr -outfile vc_redist.x64.exe 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'; `
Start-Process .\vc_redist.x64.exe -ArgumentList '/install /passive /norestart' -Wait; `
rm vc_redist.x64.exe

# HTTPD
RUN Add-Type -AssemblyName System.IO.Compression.FileSystem ; `
iwr -outfile httpd.zip "http://www.apachelounge.com/download/VC14/binaries/httpd-$($env:HTTPD_VERSION)-win64-VC14.zip"; `
[System.IO.Compression.ZipFile]::ExtractToDirectory('httpd.zip', 'c:\'); `
rm httpd.zip
WORKDIR c:/Apache24/bin
4 changes: 2 additions & 2 deletions openssl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
FROM microsoft/nanoserver
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"]

RUN iwr -outfile openssl.zip https://indy.fulgan.com/SSL/openssl-1.0.2j-x64_86-win64.zip
RUN [System.IO.Compression.ZipFile]::ExtractToDirectory('openssl.zip', 'c:\openssl')
RUN iwr -outfile openssl.zip https://indy.fulgan.com/SSL/openssl-1.0.2j-x64_86-win64.zip; `
[System.IO.Compression.ZipFile]::ExtractToDirectory('openssl.zip', 'c:\openssl')

WORKDIR c:/openssl
COPY openssl.cnf .
Expand Down

0 comments on commit 8653ed0

Please sign in to comment.