added todo.txt
This commit is contained in:
parent
7572de6f46
commit
6768634f28
20 changed files with 2278 additions and 0 deletions
22
modules/apt/Containerfile
Normal file
22
modules/apt/Containerfile
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
FROM debian:bookworm-slim
|
||||
|
||||
# Install required packages
|
||||
RUN apt-get update && apt-get install -y \
|
||||
apt \
|
||||
apt-transport-https \
|
||||
ca-certificates \
|
||||
curl \
|
||||
gnupg \
|
||||
software-properties-common \
|
||||
tasksel \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Copy module files
|
||||
COPY entrypoint.sh /usr/local/bin/
|
||||
COPY apt-wrapper.sh /usr/local/bin/
|
||||
|
||||
# Make scripts executable
|
||||
RUN chmod +x /usr/local/bin/entrypoint.sh /usr/local/bin/apt-wrapper.sh
|
||||
|
||||
# Set entrypoint
|
||||
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue