removed the fucking vendor files
This commit is contained in:
25
Podmanfile
Normal file
25
Podmanfile
Normal file
@@ -0,0 +1,25 @@
|
||||
# --- 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" ]
|
||||
Reference in New Issue
Block a user