Files
mev-beta/Podmanfile
2025-09-16 11:05:47 -05:00

26 lines
544 B
Plaintext

# --- FILE: Podmanfile ---
# Base Podman image
FROM quay.io/podman/stable:latest
# Install dependencies for Claude Code + dev tools
RUN dnf -y install \
git \
curl \
python3 \
python3-pip \
gcc \
make \
vim \
&& dnf clean all
# Install Claude Code (placeholder: adjust to real installer)
# For example, if Claude Code is a Python package:
# RUN pip3 install claude-code
RUN curl -sSL https://example.com/claude-code-install.sh | bash
# Create workspace
WORKDIR /workspace
# Default entrypoint
CMD [ "bash" ]