Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(build): Debian Bookworm base images #4263

Merged
merged 2 commits into from
Jul 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ ARG NODE_VERSION=16
ARG PYTHON_VERSION=3.11
ARG PYTHON_SITE_DIR=/usr/local/lib/python${PYTHON_VERSION}/site-packages

FROM node:${NODE_VERSION} as node
FROM node:${NODE_VERSION}-slim as node-slim
FROM python:${PYTHON_VERSION} as python
FROM python:${PYTHON_VERSION}-slim as python-slim
FROM node:${NODE_VERSION}-bookworm as node
FROM node:${NODE_VERSION}-bookworm-slim as node-slim
FROM python:${PYTHON_VERSION}-bookworm as python
FROM python:${PYTHON_VERSION}-slim-bookworm as python-slim

# - Intermediary stages
# * build-node
Expand Down Expand Up @@ -93,8 +93,8 @@ RUN make install opts='--without dev'
# * build-python-private [build-python]
FROM build-python AS build-python-private

# Authenticate git with token, install SAML binary dependency,
# private Python dependencies, and integrate private modules
# Authenticate git with token, install private Python dependencies,
# and integrate private modules
ARG SAML_REVISION
ARG RBAC_REVISION
RUN --mount=type=secret,id=github_private_cloud_token \
Expand Down
Loading