This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SQL Server Command Line Tools - custom image | |
# From Alpine 3.11 (~5 MBs) | |
FROM alpine:3.11 | |
# * ################################## | |
# * CHANGES | |
# * wrap RUNs into a single RUN command, this avoids multiple layers, reduce it from ~40MB to 17.7MB (so basically we added 12MB on top of alpine) | |
# * Allows you to change MSSQL_VERSION by passing `--build-arg MSSQL_VERSION=<new version>` during docker build. | |
ARG MSSQL_VERSION=17.5.2.1-1 |