feat: add rust-pod development environment setup

This commit is contained in:
2026-05-09 15:16:11 +00:00
commit 49e599eeba
6 changed files with 93 additions and 0 deletions

14
Containerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM alpine:latest
# Copy all installation scripts into the image
COPY install-apk.sh /usr/local/bin/
COPY install-rust.sh /usr/local/bin/
COPY install-cargo-tools.sh /usr/local/bin/
COPY setup-rust-dev.sh /usr/local/bin/
# Make them executable and run the orchestrator
RUN chmod +x /usr/local/bin/*.sh && \
/usr/local/bin/setup-rust-dev.sh
# Set the default shell to fish (or bash)
CMD ["/usr/bin/fish"]