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
9 changes: 5 additions & 4 deletions components/backend/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Development Dockerfile for Go backend (simplified, no Air)
FROM golang:1.24-alpine
FROM registry.access.redhat.com/ubi9/go-toolset:1.24

WORKDIR /app
USER 0

# Install git and build dependencies
RUN apk add --no-cache git build-base
WORKDIR /app
RUN chown -R 1001:0 /app
USER 1001

# Set environment variables
ENV AGENTS_DIR=/app/agents
Expand Down
Loading