still working
This commit is contained in:
parent
08c70cc18f
commit
eb90496cbc
8 changed files with 541 additions and 264 deletions
19
examples/init.d/20_custom_repos.sh
Normal file
19
examples/init.d/20_custom_repos.sh
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#!/bin/sh
|
||||
echo "Setting up additional package repositories..."
|
||||
|
||||
# Add testing repository for newer packages
|
||||
echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
|
||||
|
||||
# Add community repository
|
||||
echo "@community http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
|
||||
|
||||
# Update package list
|
||||
apk update
|
||||
|
||||
# Install some useful tools from testing/community
|
||||
apk add \
|
||||
@testing golang \
|
||||
@community rust \
|
||||
@community cargo
|
||||
|
||||
echo "Additional repositories configured and packages installed."
|
||||
Loading…
Add table
Add a link
Reference in a new issue