Skip to content

Instantly share code, notes, and snippets.

View jmarcos-cano's full-sized avatar
🏠
Working from home

Marcos Cano jmarcos-cano

🏠
Working from home
View GitHub Profile
@jmarcos-cano
jmarcos-cano / Dockerfile
Last active April 30, 2020 14:42 — forked from croblesm/Dockerfile
msql-tools custom image using Alpine
# 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