Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
licences/
.github/
.vscode/
LICENSE.md
README.md
24 changes: 24 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "dockerfile",
"request": "launch",
"name": "Docker: Build Alpine",
"dockerfile": "${workspaceFolder}/alpine/Dockerfile",
"contextPath": "${workspaceFolder}/alpine",
"args": ["-t", "docker-sqlcmd:alpine"]
},
{
"type": "dockerfile",
"request": "launch",
"name": "Docker: Build Ubuntu",
"dockerfile": "${workspaceFolder}/ubuntu/Dockerfile",
"contextPath": "${workspaceFolder}/ubuntu",
"args": ["-t", "docker-sqlcmd:ubuntu"]
}
]
}
5 changes: 3 additions & 2 deletions ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
ARG UBUNTU_VERSION=22.04
ARG UBUNTU_VERSION=24.04
FROM ubuntu:$UBUNTU_VERSION

ARG MSSQLTOOLS_VERSION=18.2.1.1
# Check latest published version here: https://packages.microsoft.com/ubuntu/24.04/prod/pool/main/m/mssql-tools18/
ARG MSSQLTOOLS_VERSION=18.4.1.1-1
# Microsoft decided to have a suffix for newer versions of mssql-tools, e.g. mssql-tools18
ARG MSSQLTOOLS_SUFFIX=18
# and also the path changed on newer versions. It's a mess.
Expand Down
Loading