Initial commit

This commit is contained in:
Fergal Moran
2019-03-31 16:39:03 +01:00
commit f029ef1b76
35 changed files with 1663 additions and 0 deletions

12
sql-server/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y curl apt-transport-https sudo
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
RUN curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server.list > /etc/apt/sources.list.d/mssql-server.list
RUN curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list > /etc/apt/sources.list.d/msprod.list
RUN apt-get update
RUN apt-get install -y mssql-server mssql-tools