File tree Expand file tree Collapse file tree 3 files changed +28
-2
lines changed Expand file tree Collapse file tree 3 files changed +28
-2
lines changed Original file line number Diff line number Diff line change 11licences /
22.github /
3+ .vscode /
34LICENSE.md
45README.md
Original file line number Diff line number Diff line change 1+ {
2+ // Use IntelliSense to learn about possible attributes.
3+ // Hover to view descriptions of existing attributes.
4+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+ "version" : " 0.2.0" ,
6+ "configurations" : [
7+ {
8+ "type" : " dockerfile" ,
9+ "request" : " launch" ,
10+ "name" : " Docker: Build Alpine" ,
11+ "dockerfile" : " ${workspaceFolder}/alpine/Dockerfile" ,
12+ "contextPath" : " ${workspaceFolder}/alpine" ,
13+ "args" : [" -t" , " docker-sqlcmd:alpine" ]
14+ },
15+ {
16+ "type" : " dockerfile" ,
17+ "request" : " launch" ,
18+ "name" : " Docker: Build Ubuntu" ,
19+ "dockerfile" : " ${workspaceFolder}/ubuntu/Dockerfile" ,
20+ "contextPath" : " ${workspaceFolder}/ubuntu" ,
21+ "args" : [" -t" , " docker-sqlcmd:ubuntu" ]
22+ }
23+ ]
24+ }
Original file line number Diff line number Diff line change 1- ARG UBUNTU_VERSION=22 .04
1+ ARG UBUNTU_VERSION=24 .04
22FROM ubuntu:$UBUNTU_VERSION
33
4- ARG MSSQLTOOLS_VERSION=18.2.1.1
4+ # Check latest published version here: https://packages.microsoft.com/ubuntu/24.04/prod/pool/main/m/mssql-tools18/
5+ ARG MSSQLTOOLS_VERSION=18.4.1.1-1
56# Microsoft decided to have a suffix for newer versions of mssql-tools, e.g. mssql-tools18
67ARG MSSQLTOOLS_SUFFIX=18
78# and also the path changed on newer versions. It's a mess.
You can’t perform that action at this time.
0 commit comments