27 lines
984 B
Docker
27 lines
984 B
Docker
## This Dockerfile should not run in GitHub Action or any other automated process.
|
|
## It should be manually executed by the needs of the user.
|
|
##
|
|
## Before manaually execute:
|
|
## Please confirm the EMQX-Enterprise version you are using and modify the base layer image tag
|
|
## ```bash
|
|
## $ docker build -f=Dockerfile.msodbc -t emqx-enterprise-with-msodbc:5.0.3-alpha.2 .
|
|
## ```
|
|
|
|
ARG VERSION=5.5.0
|
|
FROM emqx/emqx-enterprise:$VERSION
|
|
|
|
USER root
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y gnupg2 curl apt-utils \
|
|
&& . /etc/os-release \
|
|
&& curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \
|
|
&& curl "https://packages.microsoft.com/config/debian/$VERSION_ID/prod.list" > /etc/apt/sources.list.d/mssql-release.list \
|
|
&& apt-get update \
|
|
&& ACCEPT_EULA=Y apt-get install -y msodbcsql17 unixodbc-dev \
|
|
&& sed -i 's/ODBC Driver 17 for SQL Server/ms-sql/g' /etc/odbcinst.ini \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
USER emqx
|