mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 03:23:00 +00:00
32 lines
1.3 KiB
Docker
32 lines
1.3 KiB
Docker
ARG BASE_IMAGE=quay.io/jupyter/base-notebook
|
|
FROM $BASE_IMAGE
|
|
|
|
# Fix: https://github.com/hadolint/hadolint/wiki/DL4006
|
|
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
USER root
|
|
|
|
ENV MSSQL_DRIVER="ODBC Driver 18 for SQL Server"
|
|
ENV PATH="/opt/mssql-tools18/bin:${PATH}"
|
|
|
|
RUN apt-get update --yes && \
|
|
apt-get install --yes --no-install-recommends curl gnupg2 lsb-release && \
|
|
curl -fsSL "https://packages.microsoft.com/keys/microsoft.asc" | gpg --dearmor -o /usr/share/keyrings/microsoft-prod.gpg && \
|
|
curl "https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list" > /etc/apt/sources.list.d/mssql-release.list && \
|
|
apt-get update --yes && \
|
|
ACCEPT_EULA=Y apt-get install --yes --no-install-recommends msodbcsql18 && \
|
|
# optional: for bcp and sqlcmd
|
|
ACCEPT_EULA=Y apt-get install --yes --no-install-recommends mssql-tools18 && \
|
|
# optional: for unixODBC development headers
|
|
apt-get install --yes --no-install-recommends unixodbc-dev && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Switch back to jovyan to avoid accidental container runs as root
|
|
USER ${NB_UID}
|
|
|
|
RUN mamba install --yes 'pyodbc' && \
|
|
mamba clean --all -f -y && \
|
|
fix-permissions "${CONDA_DIR}" && \
|
|
fix-permissions "/home/${NB_USER}"
|