Files
dockerfiless/sql-server/Dockerfile
Fergal Moran f029ef1b76 Initial commit
2019-03-31 16:39:03 +01:00

13 lines
467 B
Docker

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