Skip to content

Commit

Permalink
feat(build): Debian Bookworm base images (#4263)
Browse files Browse the repository at this point in the history
  • Loading branch information
khvn26 authored Jul 2, 2024
1 parent 85b0379 commit 0230b9a
Showing 1 changed file with 6 additions and 6 deletions.
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

0 comments on commit 0230b9a

Please sign in to comment.