1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00

Update 2014 to 2016

This commit is contained in:
DaveBlooman
2016-10-25 15:46:28 +01:00
parent c3ad03bb60
commit 19a028658a

View File

@ -15,7 +15,7 @@ ENV attach_dbs "[]"
COPY . /
WORKDIR /
# download and install Microsoft SQL 2014 Express Edition in one step
# download and install Microsoft SQL 2016 Express Edition in one step
RUN powershell -Command (New-Object System.Net.WebClient).DownloadFile('%sql_express_download_url%', 'sqlexpress.exe') && /sqlexpress.exe /qs /x:setup && /setup/setup.exe /q /ACTION=Install /INSTANCENAME=SQLEXPRESS /FEATURES=SQLEngine /UPDATEENABLED=0 /SQLSVCACCOUNT="NT AUTHORITY\System" /SQLSYSADMINACCOUNTS="BUILTIN\ADMINISTRATORS" /TCPENABLED=1 /NPENABLED=0 /IACCEPTSQLSERVERLICENSETERMS && del /F /Q sqlexpress.exe && rd /q /s setup
RUN powershell -Command \