mirror of
https://github.com/getredash/redash.git
synced 2026-03-20 22:00:12 -04:00
* Snapshot: 24.07.0-dev * Snapshot: 24.08.0-dev * Snapshot: 24.09.0-dev * Snapshot: 24.10.0-dev * Snapshot: 24.11.0-dev * Snapshot: 24.12.0-dev * Snapshot: 25.01.0-dev * Snapshot: 25.02.0-dev * Snapshot: 25.03.0-dev * Snapshot: 25.04.0-dev * Upgrade Node.js version to 24 in Dockerfile and .nvmrc; update package.json engine constraints * Update major dependencies * Switch from yarn to pnpm * Switch from yarn to pnpm: ci * Update Python version to 3.13 in CI workflow * Refactor Netlify build command to remove pnpm installation step * Update ESLint configuration for improved compatibility and disable specific rules * Restyled by prettier * Add typeRoots and types to tsconfig for improved type definitions * Update Dockerfile.cypress to use Node 24 and streamline installation steps * Fixed tests * Restyled by prettier * Update Jest snapshot comments to point to the official documentation URL * viz-lib: refactor test setup and update snapshots for consistency * Add babel-jest as a dev dependency for improved testing support * Add virtual prop to visualization type selector for improved functionality * Remove CJS/ESM compatibility shim for color-rgba * Restyled by prettier * Enable ESLintPlugin conditionally based on production environment * Import d3 library in d3box.ts * Fix pip install command in CI workflow to use python -m * Replace d3 import with global declaration for compatibility with d3 v3 --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Restyled.io <commits@restyled.io>
123 lines
3.7 KiB
Docker
123 lines
3.7 KiB
Docker
FROM node:24-bookworm AS frontend-builder
|
|
|
|
RUN npm install --global pnpm@10.30.3
|
|
|
|
# Controls whether to build the frontend assets
|
|
ARG skip_frontend_build
|
|
|
|
ENV CYPRESS_INSTALL_BINARY=0
|
|
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
|
|
|
|
RUN useradd -m -d /frontend redash
|
|
USER redash
|
|
|
|
WORKDIR /frontend
|
|
COPY --chown=redash package.json pnpm-lock.yaml pnpm-workspace.yaml .npmrc /frontend/
|
|
COPY --chown=redash viz-lib /frontend/viz-lib
|
|
COPY --chown=redash scripts /frontend/scripts
|
|
|
|
# Controls whether to instrument code for coverage information
|
|
ARG code_coverage
|
|
ENV BABEL_ENV=${code_coverage:+test}
|
|
|
|
# Use BuildKit cache mount for pnpm store to speed rebuilds
|
|
RUN --mount=type=cache,id=pnpm-store,target=/frontend/.cache/pnpm,uid=1001,gid=1001 \
|
|
pnpm config set store-dir /frontend/.cache/pnpm && \
|
|
if [ "x$skip_frontend_build" = "x" ] ; then pnpm install --frozen-lockfile; fi
|
|
|
|
COPY --chown=redash client /frontend/client
|
|
COPY --chown=redash webpack.config.js /frontend/
|
|
|
|
# Use the same cache mount for the build step
|
|
RUN --mount=type=cache,id=pnpm-store,target=/frontend/.cache/pnpm,uid=1001,gid=1001 <<EOF
|
|
if [ "x$skip_frontend_build" = "x" ]; then
|
|
pnpm run build
|
|
else
|
|
mkdir -p /frontend/client/dist
|
|
touch /frontend/client/dist/multi_org.html
|
|
touch /frontend/client/dist/index.html
|
|
fi
|
|
EOF
|
|
|
|
FROM python:3.13-slim-bookworm
|
|
|
|
EXPOSE 5000
|
|
|
|
RUN useradd --create-home redash
|
|
|
|
# Ubuntu packages
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
pkg-config \
|
|
curl \
|
|
gnupg \
|
|
build-essential \
|
|
pwgen \
|
|
libffi-dev \
|
|
sudo \
|
|
git-core \
|
|
# Kerberos, needed for MS SQL Python driver to compile on arm64
|
|
libkrb5-dev \
|
|
# Postgres client
|
|
libpq-dev \
|
|
# ODBC support:
|
|
g++ unixodbc-dev \
|
|
# for SAML
|
|
xmlsec1 \
|
|
# Additional packages required for data sources:
|
|
libssl-dev \
|
|
default-libmysqlclient-dev \
|
|
freetds-dev \
|
|
libsasl2-dev \
|
|
unzip \
|
|
libsasl2-modules-gssapi-mit && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
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 <<EOF
|
|
if [ "$TARGETPLATFORM" = "linux/amd64" ]; then
|
|
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 msodbcsql18
|
|
apt-get clean
|
|
rm -rf /var/lib/apt/lists/*
|
|
curl "$databricks_odbc_driver_url" --location --output /tmp/simba_odbc.zip
|
|
chmod 600 /tmp/simba_odbc.zip
|
|
unzip /tmp/simba_odbc.zip -d /tmp/simba
|
|
dpkg -i /tmp/simba/*.deb
|
|
printf "[Simba]\nDriver = /opt/simba/spark/lib/64/libsparkodbc_sb64.so" >> /etc/odbcinst.ini
|
|
rm /tmp/simba_odbc.zip
|
|
rm -rf /tmp/simba
|
|
fi
|
|
EOF
|
|
|
|
WORKDIR /app
|
|
|
|
ENV POETRY_VERSION=2.1.4
|
|
ENV POETRY_HOME=/etc/poetry
|
|
ENV POETRY_VIRTUALENVS_CREATE=false
|
|
RUN curl -sSL --retry 3 --retry-delay 5 https://install.python-poetry.org | python3 -
|
|
|
|
# Avoid crashes, including corrupted cache artifacts, when building multi-platform images with GitHub Actions.
|
|
RUN /etc/poetry/bin/poetry cache clear pypi --all
|
|
|
|
COPY pyproject.toml poetry.lock ./
|
|
|
|
ARG POETRY_OPTIONS="--no-root --no-interaction --no-ansi"
|
|
# for LDAP authentication, install with `ldap3` group
|
|
# disabled by default due to GPL license conflict
|
|
ARG install_groups="main,all_ds,dev"
|
|
RUN /etc/poetry/bin/poetry install --only $install_groups $POETRY_OPTIONS
|
|
|
|
COPY --chown=redash . /app
|
|
COPY --from=frontend-builder --chown=redash /frontend/client/dist /app/client/dist
|
|
RUN chown redash /app
|
|
USER redash
|
|
|
|
ENTRYPOINT ["/app/bin/docker-entrypoint"]
|
|
CMD ["server"]
|