Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
PowerShell_MSSQL-CLI
FROM microsoft/powershell
LABEL version=lastest
USER root
RUN apt-get update -y
RUN apt-get install wget curl -y
# Import the public repository GPG keys
RUN wget -qO- https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
RUN curl -o /etc/apt/sources.list.d/microsoft.list https://packages.microsoft.com/config/ubuntu/16.04/prod.list
RUN apt-get update
RUN apt-get install mssql-cli -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment