Skip to content
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# SPDX-FileCopyrightText: © 2025 VEXXHOST, Inc.
# SPDX-License-Identifier: GPL-3.0-or-later

FROM ghcr.io/vexxhost/openstack-venv-builder:2024.1@sha256:c63e5b4a2ae8d5870ac461f23ac454ed508ad3abe6dbe79981d208bf50293b85 AS build
FROM ghcr.io/vexxhost/openstack-venv-builder:2024.1@sha256:b65b82601634836868246713d59d3f0b48c0a7611f428eedd0b1dc3af02d815c AS build
RUN --mount=type=bind,from=keystone,source=/,target=/src/keystone,readwrite <<EOF bash -xe
uv pip install \
--constraint /upper-constraints.txt \
/src/keystone[ldap] \
keystone-keycloak-backend==0.5.0
EOF

FROM ghcr.io/vexxhost/python-base:2024.1@sha256:dc7e45276d41fb8b20d7fcd6358ec49ac9b00047fb46dc025b1827aa4cd54ad9
FROM ghcr.io/vexxhost/python-base:2024.1@sha256:99482eb9721dc669a7143611d21d2c396fe44946209ec54976d9e1b43d450fd6
RUN \
groupadd -g 42424 keystone && \
useradd -u 42424 -g 42424 -M -d /var/lib/keystone -s /usr/sbin/nologin -c "Keystone User" keystone && \
Expand Down
Loading