-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b3e6cd0
commit 8c0bb6f
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
ARG AGENT_VERSION | ||
FROM ghcr.io/windmill-labs/windmill:${AGENT_VERSION} | ||
|
||
RUN curl https://packages.microsoft.com/config/debian/12/prod.list | tee /etc/apt/sources.list.d/mssql-release.list \ | ||
&& curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \ | ||
&& apt-get update \ | ||
&& ACCEPT_EULA=Y apt-get install -y msodbcsql17 mssql-tools unixodbc-dev msodbcsql18 \ | ||
&& apt-get clean && \ | ||
|
||
RUN curl -sSL -O https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb && dpkg -i packages-microsoft-prod.deb && \ | ||
rm packages-microsoft-prod.deb && \ | ||
apt-get update && \ | ||
ACCEPT_EULA=Y apt-get install -y msodbcsql17 msodbcsql18 mssql-tools unixodbc-dev && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* |