-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
6b98197
commit 205ab52
Showing
1 changed file
with
4 additions
and
4 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,4 +1,4 @@ | ||
FROM node:16.20.1 as frontend-builder | ||
FROM node:16.20.1-bookworm as frontend-builder | ||
|
||
RUN npm install --global --force [email protected] | ||
|
||
|
@@ -25,7 +25,7 @@ COPY --chown=redash client /frontend/client | |
COPY --chown=redash webpack.config.js /frontend/ | ||
RUN if [ "x$skip_frontend_build" = "x" ] ; then yarn build; else mkdir -p /frontend/client/dist && touch /frontend/client/dist/multi_org.html && touch /frontend/client/dist/index.html; fi | ||
|
||
FROM python:3.8-slim-buster | ||
FROM python:3.8-slim-bookworm | ||
|
||
EXPOSE 5000 | ||
|
||
|
@@ -64,8 +64,8 @@ RUN apt-get update && \ | |
ARG TARGETPLATFORM | ||
ARG databricks_odbc_driver_url=https://databricks-bi-artifacts.s3.us-east-2.amazonaws.com/simbaspark-drivers/odbc/2.6.26/SimbaSparkODBC-2.6.26.1045-Debian-64bit.zip | ||
RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ | ||
curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \ | ||
&& curl https://packages.microsoft.com/config/debian/10/prod.list > /etc/apt/sources.list.d/mssql-release.list \ | ||
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor -o /usr/share/keyrings/microsoft-prod.gpg \ | ||
&& curl https://packages.microsoft.com/config/debian/12/prod.list > /etc/apt/sources.list.d/mssql-release.list \ | ||
&& apt-get update \ | ||
&& ACCEPT_EULA=Y apt-get install -y --no-install-recommends msodbcsql17 \ | ||
&& apt-get clean \ | ||
|