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
7 changes: 6 additions & 1 deletion Containerfile.debug
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ FROM registry.access.redhat.com/hi/python:3.12-builder AS builder

USER root

RUN dnf install -y git && dnf update -y
RUN dnf update -y && dnf install -y git && dnf clean all

COPY . /app

Expand Down Expand Up @@ -63,6 +63,11 @@ LABEL name="coldfront" \
vendor="NYU RTS" \
description="To gain inteactive access for a deployment of Coldfront in RTC"

USER root
# debug image: neovim for editing, tar for kubectl cp
RUN dnf update -y && dnf install -y neovim tar && dnf clean all
USER ${CONTAINER_DEFAULT_USER}

# Copy built bundles/manifest from frontend stage into the backend image
COPY --from=frontend /app/coldfront/static/bundles /app/coldfront/static/bundles

Expand Down
Loading